編寫一個程序始腾,讀人個數(shù)不確定的考試分?jǐn)?shù)娇掏,并且判斷有多少個分?jǐn)?shù)是大于或等于平均分呕寝,多少個分?jǐn)?shù)是低于平均分的。輸人一個負(fù)數(shù)表示輸入的結(jié)束婴梧。假設(shè)最高分為100下梢。
Write a program that reads an unspecified number of scores and
determines how many scores are above or equal to the average and how many
scores are below the average. Enter a negative number to signify the end of the
input. Assume that the maximum number of scores is 100.
下面是參考答案代碼:
// https://cn.fankuiba.com
import java.util.Scanner;
public class Ans7_4_page236 {
public static void main(String[] args) {
double[] scoreList = new double[100];
Scanner input = new Scanner(System.in);
System.out.print("Enter scores: (negative number signifies end): ");
int count= 0;double score;
do {
score = input.nextDouble();
scoreList[count] = score;
count++;
}while (score >= 0);
double average,sum = 0;
for (int i = 0; i < count-1; i++)
sum += scoreList[i];
average = sum / (count - 1);
System.out.println("Average of scores: "+average);
int minAverge = 0;
int maxAverge = 0;
for (int i = 0; i < count-1; i++) {
if (scoreList[i] >= average)
minAverge++;
else
maxAverge++;
}
System.out.println("Number of scores above or equal to average: " +minAverge+
"\n"+"Number of scores below average: "+(maxAverge));
}
}
適用Java語言程序設(shè)計與數(shù)據(jù)結(jié)構(gòu)(基礎(chǔ)篇)(原書第11版)Java語言程序設(shè)計(基礎(chǔ)篇)(原書第10/11版)
發(fā)布在博客:(https://cn.fankuiba.com)