1
我已經創建了一個長度相同的2維數組,並且它例如隨機填充1和0。比較行和列中的元素,在這種情況下是1和0
0100
0010
1110
1111
如何編寫程序找到行,列和對角線所有的1和0
這是我到目前爲止的代碼:
public class Test2dArray {
public static void main(String[] args) {
int row,column;
System.out.print("Enter the lenghth of matrix:");
Scanner input = new Scanner(System.in);
Random rand = new Random();
int mSize = input.nextInt();
int [][] mArray = new int [mSize][mSize];
for (row=0; row < mSize; row++){
for(column=0; column < mSize; column++){
mArray[row][column]=rand.nextInt(2);
System.out.print(mArray[row][column]+ " ");
}
System.out.println();
}
}
}
___'Java'!=='JavaScript' ___ – Rayon