import java.util.Scanner;
public class Test
{
public static void main(String[] args)
{
Scanner input = new Scanner(System.in);
System.out.print("Enter the number of students: ");
int number = input.nextInt();
int[] array = new int[number];
System.out.print("Enter " + number + " scores: ");
for(int i = 0; i < number; i++)
array[i] = input.nextInt();
int best = listTopScore(array);
char[] grades = {'A', 'B', 'C', 'D', 'F'};
char grade;
for(int i = 0; i < number; i++)
{
if(array[i] >= (best - 10))
grade = grades[0];
else if(array[i] >= (best - 20))
grade = grades[1];
else if(array[i] >= (best - 30))
grade = grades[2];
else if(array[i] >= (best - 40))
grade = grades[3];
else
grade = grades[4];
System.out.println("Student " + i + " score is " + array[i] + " and grade is " + grade);
}
}
public static int listTopScore(int[] array)
{
int topScore = array[0];
for(int i = 1; i < array.length; i++)
{
if(topScore < array[i])
topScore = array[i];
}
return topScore;
}
}
6-1 编程练习题答案
最新推荐文章于 2024-05-08 14:23:43 发布