定义一个student类,包含的内容如下。成员变量:学号,姓名,性别,班干部否,数学,语文
用java编程定义一个student类,包含的内容如下。成员变量:学号,姓名,性别,班干部否,数学,语文,外语成员方法:输入,总分,平均分编程实现这个类,并调用相应的方法...
用java编程 定义一个student类,包含的内容如下。成员变量:学号,姓名,性别,班干部否,数学,语文,外语
成员方法:输入,总分,平均分
编程实现这个类,并调用相应的方法输入数据,计算总分和平均分 展开
成员方法:输入,总分,平均分
编程实现这个类,并调用相应的方法输入数据,计算总分和平均分 展开
1个回答
展开全部
class Student
{
int number;
String name,sex;
Boolean master;
double math,chinese,english,score=0.0,average=0.0;
public Student(int num,String name,String sex,Boolean ma,double math,double chinese,double english){
this.number=num;
this.name=name;
this.sex=sex;
this.master=ma;
this.math=math;
this.chinese=chinese;
this.english=english;
}
double score(){
return math+chinese+english;
}
double ave(){
return score()/3;
}
}
public class xuesheng
{
public static void main(String[] args)
{
Student s=new Student(101,"kimi","man",true,90.0,90.0,90.0);
System.out.println("总分:"+s.score());
System.out.println("平均:"+s.ave());
}
}
{
int number;
String name,sex;
Boolean master;
double math,chinese,english,score=0.0,average=0.0;
public Student(int num,String name,String sex,Boolean ma,double math,double chinese,double english){
this.number=num;
this.name=name;
this.sex=sex;
this.master=ma;
this.math=math;
this.chinese=chinese;
this.english=english;
}
double score(){
return math+chinese+english;
}
double ave(){
return score()/3;
}
}
public class xuesheng
{
public static void main(String[] args)
{
Student s=new Student(101,"kimi","man",true,90.0,90.0,90.0);
System.out.println("总分:"+s.score());
System.out.println("平均:"+s.ave());
}
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询