- public class Ch10
- {
- public static void main(String args[])
- {
- String a[]={"春","夏","秋","冬"};
-
- String b[]=new String[]{"甲","乙","丙","丁"};
-
- int c[]={1,2,3,4};
-
- String d[]=new String[]{"A","B","C","D"};
-
-
- System.out.print("陣列a: ");
- for(int i=0; i<4; i++)
- System.out.print(a[i]+" ");
- System.out.println();
- System.out.print("陣列b: ");
- for(int i=0; i<4; i++)
- System.out.print(b[i]+" ");
- System.out.println();
-
- System.out.print("陣列c: ");
- for(int i=0; i<4; i++)
- System.out.print(c[i]+" ");
- System.out.println();
-
- System.out.print("陣列d: ");
- for(int i=0; i<4; i++)
- System.out.print(d[i]+" ");
- System.out.println();
-
- }
-
- }
複製代碼 |