帮忙写一个简单的java小程序

从命令行接受多个学生的成绩,找出并显示其中的最高分、最低分(需要考虑异常)。要求:成绩的数据类型为整型。学生数自动根据命令行参数的个数判别... 从命令行接受多个学生的成绩,找出并显示其中的最高分、最低分(需要考虑异常)。
要求:
 成绩的数据类型为整型。
 学生数自动根据命令行参数的个数判别。
 字符串转整型的方法为:int Integer.parseInt(字符串)
 异常:
没有参数:自动抛出ArrayIndexOutOfBoundsException
参数非整数:自动抛出NumberFormatException
成绩范围不在0-100分之间:主动抛出IllegalArgumentException
 可供参考的标识名:类名Score、最高分highScore、最低分lowScore
知道你强,帮忙写下,谢谢
展开
 我来答
亓昂熙5V
2008-06-02 · TA获得超过231个赞
知道小有建树答主
回答量:335
采纳率:0%
帮助的人:0
展开全部
import java.io.IOException;
import java.util.ArrayList;
import java.util.Iterator;

public class Test {
/**
* @param args
*/
public static void main(String[] args) {
// TODO Auto-generated method stub
boolean flag = true;// 是否还输入
Student stu = null;
ArrayList al = new ArrayList();
byte[] by = new byte[20];//用来存成绩
int count = 0;
while (flag) {
stu = new Student();
try {
System.in.read(by,0,by.length);
stu.setStuId(count);
try{
stu.setStuScore(Integer.parseInt(new String(by).trim()));
}catch(NumberFormatException e){
e.printStackTrace();
System.out.println("成绩必须为整数!");
}

al.add(stu);
System.out.println("是否继续输入: (Y/N)");

char ch = (char) System.in.read();
if (ch == 'N' || ch == 'n')
flag = false;
System.in.read(by); //这句并不是向数组读入数据
count++;
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
int max = 0;//最高成绩
int min = Integer.MAX_VALUE;//最低成绩
int temp = 0;
for (Iterator iter = al.iterator(); iter.hasNext();) {
Student element = (Student) iter.next();
temp = element.getStuScore();
if(max < temp) max = temp;
if(min > temp) min = temp;
}
System.out.println("Max:"+ max);
System.out.println("Min:"+min);
}

}

class Student {
private int stuId;// 学生ID

private int stuScore;// 学生成绩

public int getStuId() {
return stuId;
}

public void setStuId(int stuId) {
this.stuId = stuId;
}

public int getStuScore() {
return stuScore;
}

public void setStuScore(int stuScore) {
this.stuScore = stuScore;
}
}
紫閊飘雪
2008-06-02 · 超过20用户采纳过TA的回答
知道答主
回答量:210
采纳率:100%
帮助的人:0
展开全部
自己搞定,这是你的作业题吧!
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
VIP_aaron
2008-06-02
知道答主
回答量:27
采纳率:0%
帮助的人:16.9万
展开全部
晕死!这一类的东西还要别人帮你写?
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(1)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

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

类别

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

说明

0/200

提交
取消

辅 助

模 式