您好,登錄后才能下訂單哦!
這篇“Java中的二維數組怎么賦值與輸出”文章的知識點大部分人都不太理解,所以小編給大家總結了以下內容,內容詳細,步驟清晰,具有一定的借鑒價值,希望大家閱讀完這篇文章能有所收獲,下面我們一起來看看這篇“Java中的二維數組怎么賦值與輸出”文章吧。
public class Demo1 { public static void main(String[] args) { //聲明一個二維數組:有三行,列數待定,數組結構表示為{{ },{ },{ }} String s[][]=new String[3][];//動態賦值二維數組 s[0]=new String[3]; s[1]=new String[2]; s[2]=new String[3]; s[0][0]="a"; s[0][1]="b"; s[0][2]="c"; s[1][0]="d"; s[1][1]="e"; s[2][0]="f"; s[2][1]="g"; s[2][2]="h"; //String s[][]={{"a,b,c"},{"d,e"},{"f,g,h"}};靜態賦值二維數組 for(int i=0;i<s.length;i++) {//s.length表示行數 System.out.print("{"); for(int j=0;j<s[i].length;j++) {//s[i].length表示列數 System.out.print(s[i][j]+" "); } System.out.print("}"); System.out.println(); } } }
Java 隨機給二維數組賦值,打印輸出每個元素
代碼:
import java.util.Random; public class TestArrays1{ public static void main(String[] args){ //隨機給二維數組賦值,打印輸出每個元素 Random random=new Random(); int rand=0;//存儲隨機數 int[][] arrays=new int[3][4];//聲明二維數組 //給數組賦值 for(int i=0;i<arrays.length;i++){ for(int j=0;j<arrays[i].length;j++){ rand=random.nextInt(100);//在0-100內隨機生成一個正整數 arrays[i][j]=rand; } } //打印輸出(采用for循環) System.out.println("采用for循環: "); for(int i=0;i<arrays.length;i++){ for(int j=0;j<arrays[i].length;j++){ System.out.print(arrays[i][j]+" "); } } //打印輸出(采用增強for循環) System.out.println();//換行 System.out.println("采用for循環: "); for(int[] a:arrays){ for(int b:a){ System.out.print(b+" "); } } } }
結果:
以上就是關于“Java中的二維數組怎么賦值與輸出”這篇文章的內容,相信大家都有了一定的了解,希望小編分享的內容對大家有幫助,若想了解更多相關的知識內容,請關注億速云行業資訊頻道。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。