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+" ");
			}
		}
	}
}

結果:

以上為個人經驗,希望能給大傢一個參考,也希望大傢多多支持WalkonNet。 

推薦閱讀: