返回列表 發帖
  1. package ok;
  2. public class foradd2
  3. {
  4.         public static void main(String args[])
  5.         {
  6.                 String title[]={" no. ","  Name       "," Chini "," eng "," math "," avg "};
  7.                 String name[]={" Doraemon "," Nobita   "," Suzuki   "," Jian    "," Suneo    "};
  8.                 int score[][]={{78,89,66},
  9.                                 {45,98,68},
  10.                                 {90,98,91},
  11.                                 {57,59,81},
  12.                                 {45,66,92}};
  13.                 int avg;
  14.                 for(int i=0;i<6;i++)
  15.                 {
  16.                         System.out.print(title[i]+"\t");
  17.                 }
  18.                         System.out.println();
  19.                         System.out.println("====================================================");
  20.                         for (int i=0;i<5; i++)
  21.                         {
  22.                                 System.out.print((i+1)+"\t"+name[i]+"\t");
  23.                                 for(int j=0; j<3; j++)
  24.                                 {
  25.                                 System.out.print(score[i][j]+"\t");
  26.                                 }
  27.                         avg=Math.round((float)(score[i][0]+score[i][1]+score[i][2]/3));
  28.                         System.out.println(avg);
  29.                 }
  30.         }
  31. }
複製代碼

TOP

  1. public class Ch15 {

  2.         public static void main(String[] args)
  3.         {
  4.          String title[]={"座號","姓名","國文","英文","數學","平均"};
  5.          String name[]={"小叮噹","大雄","宜靜","技安","阿福"};
  6.          int score[][]={{78,89,66},
  7.                                          {77,67,34},
  8.                                          {90,98,91},
  9.                                          {57,59,81},
  10.                                          {45,66,92}};
  11.         int avg;
  12.         for(int i=0;i<6;i++)
  13.         {
  14.                 System.out.print(title[i]+"\t");               
  15.         }
  16.         System.out.println();
  17.         System.out.println("================================================");
  18.         for(int i=0;i<5;i++)
  19.         {
  20.                         System.out.print((i+1)+"\t"+name[i]+"\t");
  21.                 for(int j=0;j<3;j++)
  22.                         {                               
  23.                                 System.out.print(score[i][j]+"\t");                                               
  24.                 }
  25.                 avg=Math.round((float)(score[i][0]+score[i][1]+score[i][2])/3);
  26.                 System.out.println(avg);
  27.         }
  28.         
  29.         }
  30. }
複製代碼

TOP

返回列表