定义一个student类,其中有成员变量,学号,姓名,性别,是否为班干部,以及语文数学英语的分数,求成绩的方法。
定义一个主类,主方法中通过学生类创造对象,通过键盘输入学生的属性值,然后输出学生的属性值,调用方法输出该学生的总成绩和平均成绩。
JAVA类与对象 定义一个student类
- 写回答
- 好问题 0 提建议
- 追加酬金
- 关注问题
- 邀请回答
-
4条回答 默认 最新
关注 import java.util.Scanner; public class HelpOther { public static void main(String[] args) { Scanner scanner=new Scanner(System.in); System.out.println("请输入学生学号:"); String id=scanner.nextLine(); System.out.println("请输入学生姓名:"); String name=scanner.nextLine(); System.out.println("请输入学生性别(1:男生 0:女生):"); String isMan=scanner.nextLine(); boolean man=false; if(isMan.equals("1")){ man=true; } System.out.println("请输入学生是否领导(1:是 0:不是)"); String isLeader=scanner.nextLine(); boolean leader=false; if(isLeader.equals("1")){ leader=true; } System.out.println("请输入学生数学分数"); float mathScore=scanner.nextFloat(); System.out.println("请输入学生语文分数"); float chineseScore=scanner.nextFloat(); Student student=new Student(id,name,man,leader,mathScore,chineseScore); System.out.println(student.avScore); } } class Student { String id; //学号 String name;//姓名 boolean isMan;//是否男生 boolean isLeader;//是否领导 float mathScore;//数学分数 float chineseScore;//语文分数 float avScore;//平均成绩 public Student(String id ,String name,boolean isMan, boolean isLeader,float mathScore,float chineseScore){ this.id=id; this.name=name; this.isMan=isMan; this.isLeader=isLeader; this.mathScore=mathScore; this.chineseScore=chineseScore; //计算平均分数 this.avScore=(mathScore+chineseScore)/2; } }
如有帮助望采纳哈哈。
本回答被题主选为最佳回答 , 对您是否有帮助呢?解决评论 打赏 举报无用 1
悬赏问题
- ¥15 模电中二极管,三极管和电容的应用
- ¥15 关于模型导入UNITY的.FBX: Check external application preferences.警告。
- ¥15 气象网格数据与卫星轨道数据如何匹配
- ¥100 java ee ssm项目 悬赏,感兴趣直接联系我
- ¥15 微软账户问题不小心注销了好像
- ¥15 x264库中预测模式字IPM、运动向量差MVD、量化后的DCT系数的位置
- ¥15 curl 命令调用正常,程序调用报 java.net.ConnectException: connection refused
- ¥20 关于web前端如何播放二次加密m3u8视频的问题
- ¥15 使用百度地图api 位置函数报错?
- ¥15 metamask如何添加TRON自定义网络