zoukankan      html  css  js  c++  java
  • 案例:利用累加器计算前N个学生的总成绩和平均成绩

     1 /*
     2  *录入N个学生的成绩,并求出这些学生的总成绩和平均成绩! 
     3  * */
     4 import java.util.Scanner; 
     5 
     6 public class SumTest{
     7     public static void main(String args[]){
     8         
     9         int i = 0;
    10         int sum = 0;
    11         System.out.println("请输入总学生的数量:");
    12         Scanner sc = new Scanner(System.in );
    13         int n = sc.nextInt();
    14         while( i < n){
    15             i++;
    16             System.out.println("请输入第"+ i + "个学生的成绩:");
    17             int score = sc.nextInt();
    18             sum += score;
    19         }
    20         System.out.println("前"+ n + "个学生的总成绩为:" + sum + "
    平均成绩为:" + (sum/n));
    21     }
    22 }
  • 相关阅读:
    PHP的语言规范
    Js 中的this
    Js 事件
    Js DOM 操作
    Js DOM对象
    Js 对象三
    Js 定时器
    Js 对象二
    Js 对象
    POJ 2987 Firing(最大流最小割の最大权闭合图)
  • 原文地址:https://www.cnblogs.com/YangGC/p/6058558.html
Copyright © 2011-2022 走看看