程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 更多編程語言 >> 編程綜合問答 >> java-在一個3x3的二維矩陣裡面隨機的用0或1填充,找出該矩陣裡面的相同行或者列

java-在一個3x3的二維矩陣裡面隨機的用0或1填充,找出該矩陣裡面的相同行或者列

編輯:編程綜合問答
在一個3x3的二維矩陣裡面隨機的用0或1填充,找出該矩陣裡面的相同行或者列

package exercise_7;

public class Exercise7_10 {

public static void main(String[] args) {

    int[][] test = new int[3][3];
    for (int i = 0; i < test.length; i++) {
        for (int j = 0; j < test[i].length; j++) {
            int t = (int) (Math.random() * 2);
            System.out.print(t + " ");
        }
        System.out.println();
    }//自動生成一個3—3的數組

    boolean flag=true;
for (int i = 0; i < test.length; i++) {
    flag=true;
    for (int j = 0; j < test[i].length-1; j++) {//判斷相同行
        if (test[i][j]!=test[i][j+1]) {
            flag=false;
            if (flag) {
                System.out.println("All is on row "+i);
                break;
            }
        }
    }
    for (int j = 0; j < test[i].length-1; j++) {//判斷相同列
        if (test[j][i]!=test[j+1][i]) {
            flag=false;
            if (flag) {
                System.out.println("All is on column "+j);
                break;
            }
        }
    }
}


}

}


```這是我寫的程序,但是我的程序沒有輸出,我不知道是因為什麼,求告知

最佳回答:


 for (int i = 0; i < test.length; i++) {
            for (int j = 0; j < test[i].length; j++) {
                int t = (int) (Math.random() * 2);
                test[i][j] = t;//需要給數組賦值
                System.out.print(t + " ");
            }
            System.out.println();
        }//自動生成一個3—3的數組
  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved