返回列表 發帖

陣列 (一)

分別運用四種不同的陣列宣告方式, 完成參考執行畫面.

  1. public class Ch34
  2. {
  3.     public static void main(String args[])
  4.     {
  5.         String a[]={"春","夏","秋","冬"};
  6.         
  7.         String b[]=new String[]{"甲","乙","丙","丁"};

  8.         int c[];
  9.         c=new int[]{1,2,3,4};
  10.         
  11.         String d[]=new String[4];
  12.         d[0]="A";
  13.         d[1]="B";
  14.         d[2]="C";
  15.         d[3]="D";

  16.         System.out.print("陣列a: ");
  17.         for(int i=0; i<4; i++)
  18.             System.out.print(a[i]+" ");
  19.         System.out.println();

  20.         System.out.print("陣列b: ");
  21.         for(int i=0; i<4; i++)
  22.             System.out.print(b[i]+" ");
  23.         System.out.println();
  24.         
  25.         System.out.print("陣列c: ");
  26.         for(int i:c)
  27.             System.out.print(i+" ");
  28.         System.out.println();
  29.         
  30.         System.out.print("陣列d: ");
  31.         for(String s:d)
  32.             System.out.print(s+" ");
  33.         System.out.println();
  34.     }
  35. }
複製代碼

  1. package text369;
  2. public class text123 {
  3.         public static void main(String[] args) {
  4.                 int a[]={1,2,3,4};
  5.                
  6.                 String c[]={"OSDFPOS","AJFILO","DFAFV"};
  7.                
  8.                 int jkad[]=new int[2];
  9.                 jkad[0]=3;
  10.                 jkad[1]=4;
  11.                
  12.                 for(int i:a)
  13.                 {
  14.                         System.out.println(i);
  15.                 }
  16.                
  17.                 int grgs[];
  18.                 grgs=new int[]{1,5,6,7};
  19.                
  20.                 String joia[]=new String[]{"lkgan","jgreg0","d","sht"};
  21.         }

  22. }
複製代碼
張閎鈞OuO

TOP

  1. import java.util.Scanner;

  2. public class Ch01 {
  3.         public static void main(String arg[]) {
  4.                 String a[] = { "春", "夏", "秋", "冬" };
  5.                 String b[] = { "甲", "乙", "丙", "丁" };
  6.                 int c[];
  7.                 c = new int[] { 1, 2, 3, 4 };
  8.                 String d[] = new String[4];
  9.                 d[0] = "A";
  10.                 d[1] = "B";
  11.                 d[2] = "C";
  12.                 d[3] = "D";
  13.                 System.out.println("陣列a:");
  14.                 for (int i = 0; i < 4; i++)
  15.                         System.out.print(a[i] + " ");
  16.                 System.out.println();
  17.                 System.out.println("陣列b:");
  18.                 for (int i = 0; i < 4; i++)
  19.                         System.out.print(b[i] + " ");
  20.                 System.out.println();
  21.                 System.out.println("陣列c:");
  22.                 for (int i:c)
  23.                         System.out.print(i+ " ");
  24.                 System.out.println();
  25.                 System.out.println("陣列d:");
  26.                 for (String s:d)
  27.                         System.out.print(s+ " ");
  28.                 System.out.println();
  29.         }
  30. }
複製代碼

TOP

  1. public class Ch34
  2. {
  3.     public static void main(String args[])
  4.     {
  5.         String a[]={"春","夏","秋","冬"};
  6.         
  7.         String b[]=new String[]{"甲","乙","丙","丁"};

  8.         int c[];
  9.         c=new int[]{1,2,3,4};
  10.         
  11.         String d[]=new String[4];
  12.         d[0]="A";
  13.         d[1]="B";
  14.         d[2]="C";
  15.         d[3]="D";

  16.         System.out.print("陣列a: ");
  17.         for(int i=0; i<4; i++)
  18.             System.out.print(a[i]+" ");
  19.         System.out.println();

  20.         System.out.print("陣列b: ");
  21.         for(int i=0; i<4; i++)
  22.             System.out.print(b[i]+" ");
  23.         System.out.println();
  24.         
  25.         System.out.print("陣列c: ");
  26.         for(int i:c)
  27.             System.out.print(i+" ");
  28.         System.out.println();
  29.         
  30.         System.out.print("陣列d: ");
  31.         for(String s:d)
  32.             System.out.print(s+" ");
  33.         System.out.println();
  34.     }
  35. }
複製代碼

TOP

  1. public class junior01 {
  2.         public static void main(String args[]){
  3.                  String a[]=new String[]{"春","夏","秋","冬"};
  4.                  String ab[]=new String[]{"甲","乙","丙","丁"};
  5.                  int c[]=new int[]{1,2,3,4};   
  6.                  String ac[]=new String[]{"A","B","C","D"};
  7.                  System.out.print("陣列a:");
  8.                  for (int i = 0;i<=3;i+=1)
  9.                          System.out.print(a[i]);
  10.                  System.out.println();
  11.                  System.out.print("陣列ab:");
  12.                  for (int i = 0;i<=3;i+=1)
  13.                          System.out.print(ab[i]);
  14.                  System.out.println();
  15.                  System.out.print("陣列c:");
  16.                  for (int i = 0;i<=3;i+=1)
  17.                          System.out.print(c[i]);
  18.                  System.out.println();
  19.                  System.out.print("陣列ac:");
  20.                  for (int i = 0;i<=3;i+=1)
  21.                          System.out.print(ac[i]);
  22.           
  23.         }       
  24. }
複製代碼

TOP

  1. public class nsezz {
  2.         public static void main(String[] args) {
  3.                 String a[] = { "春", "夏", "秋", "冬" };
  4.                 String b[] = new String[] { "甲", "乙", "丙", "丁" };
  5.                 String c[] = new String[4];
  6.                 c[0] = "A";
  7.                 c[1] = "b";
  8.                 c[2] = "C";
  9.                 c[3] = "D";
  10.                 int d[];
  11.                 d = new int[] { 1, 2, 3, 4 };
  12.                 System.out.println("陣列a: ");
  13.                 for (int i = 0; i < 4; i++)
  14.                         System.out.print(a[i] + " ");
  15.                 System.out.println();
  16.                 System.out.println("陣列b: ");
  17.                 for (int i = 0; i < 4; i++)
  18.                         System.out.print(b[i] + " ");
  19.                 System.out.println();
  20.                 System.out.println("陣列c: ");
  21.                 for (String i : c)
  22.                         System.out.print(i + " ");
  23.                 System.out.println();
  24.                 System.out.println("陣列d: ");
  25.                 for (int i : d)
  26.                         System.out.print(i + " ");
  27.                 System.out.println();
  28.         }
  29. }
複製代碼

TOP

  1. public class Ch06 {
  2.         public static void main(String args[]) {
  3.                 String a[] = { "春", "夏", "秋", "冬" };
  4.                 System.out.print("陣列a: ");
  5.                 for (int i = 0; i < 4; i++)
  6.                         System.out.print(a[i] + " ");
  7.                 System.out.println();

  8.                 String b[] = new String[] { "甲", "乙", "丙", "丁" };
  9.                 System.out.print("陣列b: ");
  10.                 for (int i = 0; i < 4; i++)
  11.                         System.out.print(b[i] + " ");
  12.                 System.out.println();

  13.                 int c[];
  14.                 c = new int[] { 1, 2, 3, 4 };

  15.                 System.out.print("陣列c: ");
  16.                 for (int i : c)
  17.                         System.out.print(i + " ");
  18.                 System.out.println();

  19.                 String d[] = new String[4];
  20.                 d[0] = "A";
  21.                 d[1] = "B";
  22.                 d[2] = "C";
  23.                 d[3] = "D";

  24.                 System.out.print("陣列d: ");
  25.                 for (String s : d)
  26.                         System.out.print(s + " ");
  27.                 System.out.println();
  28.         }

  29. }
複製代碼

TOP

  1. public class Ch09 {
  2.         public static void main(String args[]) {
  3.                 String a[] = { "春", "夏", "秋", "冬" };
  4.                 String b[] = new String[] { "甲", "乙", "丙", "丁" };
  5.                 int c[];
  6.                 c = new int[] { 1, 2, 3, 4 };
  7.                 String d[] = new String[4];
  8.                 d[0] = "A";
  9.                 d[1] = "B";
  10.                 d[2] = "C";
  11.                 d[3] = "D";
  12.                 System.out.println("陣列a:");
  13.                 for (int i = 0; i < 4; i++)
  14.                         System.out.print(a[i] + " ");
  15.                 System.out.println();
  16.                
  17.                 System.out.println("陣列b:");
  18.                 for (int i = 0; i < 4; i++)
  19.                         System.out.print(b[i] + " ");
  20.                 System.out.println();
  21.                
  22.                 System.out.println("陣列c:");
  23.                 for (int i:c )
  24.                         System.out.print(i + " ");
  25.                 System.out.println();
  26.                
  27.                 System.out.println("陣列d:");
  28.                 for (String s:d  )
  29.                         System.out.print(s + " ");
  30.                 System.out.println();
  31.         }
  32. }
複製代碼

TOP

返回列表