我是靠谱客的博主 温婉雪糕,最近开发中收集的这篇文章主要介绍java判断题目得分_第七章第四题(分析成绩)(Analyze scores) - 编程练习题答案,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

编写一个程序,读人个数不确定的考试分数,并且判断有多少个分数是大于或等于平均分,多少个分数是低于平均分的。输人一个负数表示输入的结束。假设最高分为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++;

最后

以上就是温婉雪糕为你收集整理的java判断题目得分_第七章第四题(分析成绩)(Analyze scores) - 编程练习题答案的全部内容,希望文章能够帮你解决java判断题目得分_第七章第四题(分析成绩)(Analyze scores) - 编程练习题答案所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(44)

评论列表共有 0 条评论

立即
投稿
返回
顶部