-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathRowColumnOnes.java
53 lines (48 loc) · 1.72 KB
/
RowColumnOnes.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
public class RowColumnOnes {
public static int[][] createList() {
int[][] list = new int[6][6];
for (int row = 0; row < list.length; row++) {
for (int column = 0; column < list[row].length; column++) {
int num = (int) (Math.random() * 2);
list[row][column] = num;
}
}
return list;
}
public static void displayList(int[][] list) {
for (int row = 0; row < list.length; row++) {
for (int column = 0; column < list[row].length; column++) {
System.out.print(list[row][column] + " ");
}
System.out.println();
}
}
public static void rowOnes(int[][] list) {
for (int row = 0; row < list.length; row++) {
int countRow = 0;
for (int column = 0; column < list[row].length; column++) {
int num = list[row][column];
if (num == 1) countRow += 1;
}
if (countRow == 0) ;
else if (countRow % 2 == 0) System.out.printf("Row (%d) has EVEN 1's \n", row);
}
}
public static void columnOnes(int[][] list) {
for (int column = 0; column < list[0].length; column++) {
int countColumn = 0;
for (int row = 0; row < list.length; row++) {
int num = list[row][column];
if (num == 1) countColumn += 1;
}
if (countColumn == 0) ;
else if (countColumn % 2 == 0) System.out.printf("Column (%d) has EVEN 1's \n", column);
}
}
public static void main(String[] args) {
int[][] list = createList();
displayList(list);
rowOnes(list);
columnOnes(list);
}
}