返回列表 發帖

陣列 (五)-成績表

利用二維陣列, 試做一個包含五位同學, 各三組分數的成績表格.
表格的形式如下:

  1. public class Ch39
  2. {
  3.     public static void main(String args[])
  4.     {
  5.          int score[][]={{90,85,85},
  6.                         {56,48,91},
  7.                         {87,56,55},
  8.                         {23,25,53},
  9.                         {88,82,95}};
  10.          System.out.println("座號\t國文\t英文\t數學");
  11.          System.out.println("============================");
  12.          for(int i=0; i<5; i++)
  13.          {
  14.              System.out.print((i+1)+"\t");
  15.              for(int j=0; j<3; j++)
  16.                   System.out.print(score[i][j]+"\t");
  17.              System.out.println();
  18.          }
  19.     }
  20. }
複製代碼

  1. public class Ch35
  2. {
  3.     public static void main(String args[])
  4.     {
  5.          int score[][]={{100,100,100},
  6.                         {0,0,0},
  7.                         {0,1,0},
  8.                         {1,0,1},
  9.                         {87,87,87}};
  10.          System.out.println("座號\t國文\t英文\t數學");
  11.          System.out.println("============================");
  12.          for(int i=0; i<5; i++)
  13.          {
  14.              System.out.print((i+1)+"\t");
  15.              for(int j=0; j<3; j++)
  16.                   System.out.print(score[i][j]+"\t");
  17.              System.out.println();
  18.          }
  19.     }
  20. }
複製代碼

TOP

  1. public class Ch39
  2. {
  3.     public static void main(String args[])
  4.     {
  5.          int score[][]={{90,85,85},
  6.                         {56,48,91},
  7.                         {87,56,55},
  8.                         {23,25,53},
  9.                         {88,82,95}};
  10.          System.out.println("座號\t國文\t英文\t數學");
  11.          System.out.println("============================");
  12.          for(int i=0; i<5; i++)
  13.          {
  14.              System.out.print((i+1)+"\t");
  15.              for(int j=0; j<3; j++)
  16.                   System.out.print(score[i][j]+"\t");
  17.              System.out.println();
  18.          }
  19.     }
  20. }
複製代碼

TOP

  1. public class Ch01
  2. {
  3.     public static void main(String args[])
  4.     {
  5.          int score[][]={{90,85,85},
  6.                         {56,48,91},
  7.                         {87,56,55},
  8.                         {23,25,53},
  9.                         {88,82,95}};
  10.          System.out.println("座號\t國文\t英文\t數學");
  11.          System.out.println("============================");
  12.          for(int i=0; i<5; i++)
  13.          {
  14.              System.out.print((i+1)+"\t");
  15.              for(int j=0; j<3; j++)
  16.                   System.out.print(score[i][j]+"\t");
  17.              System.out.println();
  18.          }
  19.     }
  20. }
複製代碼

TOP

  1. public class Ch35
  2. {
  3.     public static void main(String args[])
  4.     {
  5.          int score[][]={{100,100,100},
  6.                         {0,0,0},
  7.                         {0,1,0},
  8.                         {1,0,1},
  9.                         {87,87,87}};
  10.          System.out.println("座號\t國文\t英文\t數學");
  11.          System.out.println("============================");
  12.          for(int i=0; i<5; i++)
  13.          {
  14.              System.out.print((i+1)+"\t");
  15.              for(int j=0; j<3; j++)
  16.                   System.out.print(score[i][j]+"\t");
  17.              System.out.println();
  18.          }
  19.     }
  20. }
複製代碼

TOP

  1. import java.util.Scanner;
  2. public class Ch01
  3. {
  4.   public static void main(String args[])
  5.   {
  6.     int score[][]={{1,2,3},
  7.                         {0,100,0},
  8.                         {0,0,0},
  9.                         {65,2,21},
  10.                         {0,3,1}};
  11.          System.out.println("座號\t國文\t英文\t數學");
  12.          System.out.println("============================");
  13.          for(int i=0; i<5; i++)
  14.          {
  15.              System.out.print((i+1)+"\t");
  16.              for(int j=0; j<3; j++)
  17.                   System.out.print(score[i][j]+"\t");
  18.              System.out.println();
  19.   }
  20. }
  21. }
複製代碼

TOP

  1. import java.io.Console;
  2. public class test4 {

  3.         public static void main(String[] args)
  4.         {

  5.                 int score[][]={{90,85,85},
  6.                 {56,48,91},
  7.                 {87,56,55},
  8.                 {23,25,53},
  9.                 {88,82,95}};
  10.                 System.out.println("座號\t國文\t英文\t數學");
  11.                 System.out.println("============================");
  12.                 for(int i=0; i<5; i++)
  13.                 {
  14.                         System.out.print((i+1)+"\t");
  15.                         for(int j=0; j<3; j++)
  16.                                 System.out.print(score[i][j]+"\t");
  17.                         System.out.println();
  18. }

  19.         }
  20. }
複製代碼

TOP

  1. public class Ch39
  2. {
  3.     public static void main(String args[])
  4.     {
  5.          int score[][]={{90,85,85},
  6.                         {56,48,91},
  7.                         {87,56,55},
  8.                         {23,25,53},
  9.                         {88,82,95}};
  10.          System.out.println("座號\t國文\t英文\t數學");
  11.          System.out.println("============================");
  12.          for(int i=0; i<5; i++)
  13.          {
  14.              System.out.print((i+1)+"\t");
  15.              for(int j=0; j<3; j++)
  16.                   System.out.print(score[i][j]+"\t");
  17.              System.out.println();
  18.          }
  19.     }
  20. }
複製代碼

TOP

  1. public class Ch39
  2. {
  3.     public static void main(String args[])
  4.     {
  5.          int score[][]={{90,85,85},
  6.                         {56,48,91},
  7.                         {87,56,55},
  8.                         {23,25,53},
  9.                         {88,82,95}};
  10.          System.out.println("座號\t國文\t英文\t數學");
  11.          System.out.println("============================");
  12.          for(int i=0; i<5; i++)
  13.          {
  14.              System.out.print((i+1)+"\t");
  15.              for(int j=0; j<3; j++)
  16.                   System.out.print(score[i][j]+"\t");
  17.              System.out.println();
  18.          }
  19.     }
  20. }
複製代碼

TOP

  1. public class Ch39
  2. {
  3.     public static void main(String args[])
  4.     {
  5.          int score[][]={{90,85,85},
  6.                         {56,48,91},
  7.                         {87,56,55},
  8.                         {23,25,53},
  9.                         {88,82,95}};
  10.          System.out.println("座號\t國文\t英文\t數學");
  11.          System.out.println("============================");
  12.          for(int i=0; i<5; i++)
  13.          {
  14.              System.out.print((i+1)+"\t");
  15.              for(int j=0; j<3; j++)
  16.                   System.out.print(score[i][j]+"\t");
  17.              System.out.println();
  18.          }
  19.     }
  20. }
複製代碼

TOP

返回列表