SerenityU 2023-03-30 20:10 采纳率: 50%
浏览 16
已结题

代码最后方法重写错了

创建和显示学生信息,具体要求如下
定义Person类,在该类中定义成员变量name(姓名)sex (性别)和 age (年龄),然后定义有参构造方法,初始成员变量,最后定义成员方法oString0返回姓名、性别和年龄信息。
定义 Student 类继承erson类,在该类中增加成员变量no(学号)、scoreEn(英语成绩)、scoreMath (数学成绩)和 screCh (语文成绩),然后增加成员方法aver、max和min分别返回三门功课的平均分、最育分和最低分,最后重写 toString方法返回姓名、性别、年龄、学号、平均分、最高分和最低信息。
定义 StudentTest 类在 main0方法中实现创建和显示学生信息

  • 写回答

1条回答 默认 最新

  • cyixian 2023-03-30 20:15
    关注
    
    class Person {
        String name;
        String sex;
        int age;
    
        public Person(String name, String sex, int age) {
            this.name = name;
            this.sex = sex;
            this.age = age;
        }
    
        public String toString() {
            return "姓名:" + name + ",性别:" + sex + ",年龄:" + age;
        }
    }
    
    class Student extends Person {
        String no;
        int scoreEn;
        int scoreMath;
        int scoreCh;
    
        public Student(String name, String sex, int age, String no, int scoreEn, int scoreMath, int scoreCh) {
            super(name, sex, age);
            this.no = no;
            this.scoreEn = scoreEn;
            this.scoreMath = scoreMath;
            this.scoreCh = scoreCh;
        }
    
        public double aver() {
            return (scoreEn + scoreMath + scoreCh) / 3.0;
        }
    
        public int max() {
            int max = scoreEn > scoreMath ? scoreEn : scoreMath;
            max = max > scoreCh ? max : scoreCh;
            return max;
        }
    
        public int min() {
            int min = scoreEn < scoreMath ? scoreEn : scoreMath;
            min = min < scoreCh ? min : scoreCh;
            return min;
        }
    
        public String toString() {
            return super.toString() + ",学号:" + no + ",平均分:" + aver() + ",最高分:" + max() + ",最低分:" + min();
        }
    }
    
    public class StudentTest {
        public static void main(String[] args) {
            Student stu = new Student("张三", "男", 18, "20210001", 80, 90, 70);
            System.out.println(stu.toString());
        }
    }
    
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

问题事件

  • 已结题 (查看结题原因) 3月31日
  • 已采纳回答 3月31日
  • 创建了问题 3月30日

悬赏问题

  • ¥15 用verilog实现tanh函数和softplus函数
  • ¥15 求京东批量付款能替代天诚
  • ¥15 slaris 系统断电后,重新开机后一直自动重启
  • ¥15 51寻迹小车定点寻迹
  • ¥15 谁能帮我看看这拒稿理由啥意思啊阿啊
  • ¥15 关于vue2中methods使用call修改this指向的问题
  • ¥15 idea自动补全键位冲突
  • ¥15 请教一下写代码,代码好难
  • ¥15 iis10中如何阻止别人网站重定向到我的网站
  • ¥15 滑块验证码移动速度不一致问题