黑马程序员技术交流社区

标题: 键盘录入,存进硬盘 [打印本页]

作者: polarfox17    时间: 2015-10-2 23:54
标题: 键盘录入,存进硬盘
有五个学生,每个学生有3门课的成绩,
从键盘输入以上数据(包括学生号,姓名,三门课成绩),
计算出平均成绩,把原有的数据和计算出的平均分数存放在磁盘文件 "stud "中。
  1. public static void main(String[] args)throws IOException
  2.         {
  3.                 Scanner sc = new Scanner(System.in);
  4.                 BufferedWriter bufw = new BufferedWriter(new FileWriter("stud.txt"));
  5.                 float chinese = 0,maths = 0,english = 0;
  6.                 float chinAve = 0;
  7.                 float mathAve = 0;
  8.                 float englAve = 0;
  9.                 for (int x =1;x<=5 ;x++ )
  10.                 {
  11.                         System.out.println("请输入学号");
  12.                         int number = sc.nextInt();
  13.                         System.out.println("请输入姓名");
  14.                         String name = sc.next();
  15.                         System.out.println("请输入语文成绩");
  16.                         chinese = sc.nextFloat();
  17.                         chinAve = chinAve + chinese;
  18.                         System.out.println("请输入数学成绩");
  19.                         maths = sc.nextFloat();
  20.                         mathAve = mathAve + maths;
  21.                         System.out.println("请输入英语成绩");
  22.                         english = sc.nextFloat();
  23.                         englAve = englAve + english;
  24.                         bufw.write("学生"+x+":");
  25.                         bufw.newLine();
  26.                         bufw.write("学号:"+number+"姓名:"+name+"语文:"+chinese+"数学:"+maths+"英语:"+english);
  27.                         bufw.newLine();
  28.                 }
  29.                 chinAve = chinAve/5;
  30.                 mathAve = mathAve/5;
  31.                 englAve = englAve/5;
  32.                 bufw.write("平均分:");
  33.                 bufw.newLine();
  34.                 bufw.write("语文:"+chinAve+"数学:"+mathAve+"英语:"+englAve);
  35.                 bufw.close();
  36.                

  37.         }
复制代码

作者: chenwt2015    时间: 2015-10-3 00:04
谢谢分享




欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/) 黑马程序员IT技术论坛 X3.2