Java创建一个学生类
创建一个学生类,每个学生有姓名属性、班级名称属性(String)、课程名称属性(String)和考试成绩属性(int),某次考试结束后,每个学生都获得了一个考试成绩。(1...
创建一个学生类,每个学生有姓名属性、班级名称属性(String)、课程名称属性(String)和考试成绩属性(int),某次考试结束后,每个学生都获得了一个考试成绩。
(1) 请列出所有学生的信息;
(2) 请打印class1班的总分和平均分;
(3) 请打印Java、C#课程的平均分。( 用ArrayList对象处理)
学生信息在测试类中自己构造。
姓名 班级名 课程名 考试成绩
张三 class1 Java 85
周乐儿 class1 C# 79
王涛 class2 C# 52
李明 class2 Java 48 展开
(1) 请列出所有学生的信息;
(2) 请打印class1班的总分和平均分;
(3) 请打印Java、C#课程的平均分。( 用ArrayList对象处理)
学生信息在测试类中自己构造。
姓名 班级名 课程名 考试成绩
张三 class1 Java 85
周乐儿 class1 C# 79
王涛 class2 C# 52
李明 class2 Java 48 展开
6个回答
展开全部
public class Train009
{
public static void main(String args[])
{
Student studentA=new Student();
Student studentB=new Student();
Student studentC=new Student();
studentA.name="A";
studentA.number="001";
studentA.scoreA=97;
studentA.scoreB=93;
studentA.scoreC=93;
studentB.name="B";
studentB.number="002";
studentB.scoreA=89;
studentB.scoreB=83;
studentB.scoreC=83;
double AllscoreA,AllscoreB;
AllscoreA=studentA.scoreA+studentA.scoreB+studentA.scoreC;
AllscoreB=studentB.scoreA+studentB.scoreB+studentB.scoreC;
if(AllscoreA>AllscoreB)
{
System.out.println("name:"+studentA.name+"\t"+"number:"+studentA.number+"\t"+"all score:"+AllscoreA);
}
else
System.out.println("name:"+studentB.name+"\t"+"number:"+studentB.number+"\t"+"all score:"+AllscoreB);
}
}
class Student
{
String name,number;
double scoreA,scoreB,scoreC;
}
{
public static void main(String args[])
{
Student studentA=new Student();
Student studentB=new Student();
Student studentC=new Student();
studentA.name="A";
studentA.number="001";
studentA.scoreA=97;
studentA.scoreB=93;
studentA.scoreC=93;
studentB.name="B";
studentB.number="002";
studentB.scoreA=89;
studentB.scoreB=83;
studentB.scoreC=83;
double AllscoreA,AllscoreB;
AllscoreA=studentA.scoreA+studentA.scoreB+studentA.scoreC;
AllscoreB=studentB.scoreA+studentB.scoreB+studentB.scoreC;
if(AllscoreA>AllscoreB)
{
System.out.println("name:"+studentA.name+"\t"+"number:"+studentA.number+"\t"+"all score:"+AllscoreA);
}
else
System.out.println("name:"+studentB.name+"\t"+"number:"+studentB.number+"\t"+"all score:"+AllscoreB);
}
}
class Student
{
String name,number;
double scoreA,scoreB,scoreC;
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询