帮忙写一个JAVA小程序

1.定义一个表示学生的类Student。Student类包括表示学生的学号、姓名、性别、年龄和3门课程乘积的信息数据及用来获得和设置这些数据的方法。创建TestStude... 1. 定义一个表示学生的类Student。Student类包括表示学生的学号、姓名、性别、年龄和3门课程乘积的信息数据及用来获得和设置这些数据的方法。创建TestStudent类,在TestStudent类中生成5个学生对象,计算3门课的平均乘积,以及某门课程的最高分和最低分。
[解答] 解题思路
(1) 按照要求定义学生类,其中包括学生的学号、姓名、年龄和3门可策划那个成绩等成员变量,并定义各种获取和设置成员变量值的方法。
(2) 定义一个主类,在main()方法中意义5名学生对象,求出每门课程的平均乘积、最高分和最低分
展开
 我来答
云飞扬3210
2009-10-12 · 超过33用户采纳过TA的回答
知道答主
回答量:101
采纳率:0%
帮助的人:86.7万
展开全部
public class Student {
private String sno;// 学号
private String sname;// 姓名
private String sex;// 性别
private Integer age;// 年龄
private Integer[] scores;// 三门课程成绩
//get、set方法自行补齐
}
/**
* 计算平均成绩,最高成绩和最低成绩
*
* @author yunfeiyang
* @version 1.0
* @since JDK1.5
*/
public class CountScore {

/**
* 计算某一门的平均成绩
*
* @param scores
* @return the avg_score
*/
public static int avg(int[] scores) {
if (scores.length == 0)
return 0;
int sum = 0;
for (int i : scores)
sum += i;
return sum / scores.length;
}

/**
* 计算某一门的最高成绩
*
* @param scores
* @return the max_score
*/
public static int max(int[] scores) {
if (scores.length == 0)
return 0;
int max_score = 0;
for (int i = 0; i < scores.length; i++) {
if (i == 0 || max_score < scores[i])
max_score = scores[i];
}
return max_score;
}

/**
* 计算某一门的最低成绩
*
* @param scores
* @return the min_score
*/
public static int min(int[] scores) {
if (scores.length == 0)
return 0;
int min_score = 0;
for (int i = 0; i < scores.length; i++) {
if (i == 0 || min_score > scores[i])
min_score = scores[i];
}
return min_score;
}
}
public class TestStudent {

public static void main(String[] args) {
String[] sno = { "1", "2", "3", "4", "5" };
String[] sname = { "s1", "s2", "s3", "s4", "s5" };
String[] sex = { "男", "男", "女", "女", "男" };
Integer[] age = { 20, 21, 22, 23, 24 };
Integer[][] s_score = { { 82, 82, 86 }, { 83, 82, 86 }, { 84, 82, 86 },
{ 85, 82, 86 }, { 85, 82, 86 } };
Student[] students = new Student[5];
for (int i = 0; i < 5; i++) {
Student s = new Student();
s.setSno(sno[i]);
s.setSname(sname[i]);
s.setSex(sex[i]);
s.setAge(age[i]);
s.setScores(s_score[i]);
students[i] = s;
}
// 第一门课程的成绩
int[] s1 = new int[5];
for (int i = 0; i < 5; i++) {
s1[i] = s_score[i][0];
}
System.out.println(CountScore.avg(s1));
System.out.println(CountScore.max(s1));
System.out.println(CountScore.min(s1));
}
}
loveweizaiwan
2009-10-12 · TA获得超过425个赞
知道小有建树答主
回答量:460
采纳率:0%
帮助的人:273万
展开全部
虽然简单但是 没时间帮你写了
既然你已经有了解题思路了 我也不必再说啥了....
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

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

类别

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

说明

0/200

提交
取消

辅 助

模 式