java编写简单例子 20

DOS下在屏幕下输入若干整数,以'-1'标志结束求这些数的最大值,最小值,平均值输出... DOS下
在屏幕下输入若干整数,以 '-1'标志结束
求这些数的最大值,最小值,平均值输出
展开
 我来答
百度网友5ceae63
2006-04-18 · TA获得超过1108个赞
知道小有建树答主
回答量:134
采纳率:0%
帮助的人:0
展开全部
public class Test {
public static void main(String[] args) throws Exception {

int max = Integer.MIN_VALUE;
int min = Integer.MAX_VALUE;
int count = 0;
int total = 0;
while(true) {
System.out.print("输入整数,以-1作为结束符:");
byte[] b = new byte[10];
System.in.read(b);
int temp = Integer.parseInt((new String(b).trim()));
if(temp == -1) break;
if(temp > max) max = temp;
if(temp < min) min = temp;
total += temp;
count++;
}

System.out.println("最大值: " + max);
System.out.println("最小值: " + min);
System.out.println("平均值: " + ((double)total / (double)count));
}
}
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式