java 统计十个学生成绩

package com.minrisoft;
import java.util.Scanner;
public class chengji {
public static void main(String[] arge){
  double sum=0,ave;
Scanner sc=new Scanner(System.in);
System.out.print("请输入十个学生成绩:");
   int score[]=new int[10];
   int 优秀=0,良好=0,不及格=0;
for(int i=0;i<10;i++){
score[i]=sc.nextInt();
sum+=score[i];
        if(score[i]>=80&&score[i]<=100){
        优秀++;
}
        if(score[i]>=60&&score[i]<80){
        良好++;
}
if(score[i]>=0&&score[i]<60){
不及格++;}
if(score[i]>100||score[i]<0){
System.out.println("输入有误");
}
}
ave=sum/10;
System.out.println("平均分="+ave);
System.out.println("优秀="+优秀+"良好="+良好+"不及格="+不及格);
}

}

你可能感兴趣的:(java)