黑马程序员技术交流社区

标题: 小练习题2 [打印本页]

作者: gcno93    时间: 2016-9-4 21:47
标题: 小练习题2
题目:
        a、常见一个学生类(Student),该类中有学生姓名(name),学生年龄(age),分数(score),总分数(TotalScore)。
           生成相对应的geter和seter方法和有参无参构造。
        b、总分中记录的是一个班级的总分,目前其他同学的分数都已经统计完成了,TotalScore的值为5356,但是还有
           一个同学的没有统计,假如说该同学的:姓名是张三,年龄是19,分数为59。
        c、把张三同学的分数统计到总分中,并输出打印总分。
我的代码,多指教:
public class Student {
        private String name;//学生姓名
        private int age;//学生年龄
        private float score;//分数
        public static float TotalScore=5356;//总分数
        //无参构造
        public Student() {
        }
        //有参构造
        public Student(String name, int age, float score) {
                this.name = name;
                this.age = age;
                this.score = score;
        }
        public String getName() {
                return name;
        }
        public void setName(String name) {
                this.name = name;
        }
        public int getAge() {
                return age;
        }
        public void setAge(int age) {
                this.age = age;
        }
        public float getScore() {
                return score;
        }
        public void setScore(float score) {
                this.score = score;
        }
        public static void main(String[] args) {
                Student student=new Student("张三", 19, 59);//创建张三这个对象
                Student.TotalScore=Student.TotalScore+student.getScore();//把张三的成绩加进总成绩
                System.out.println(Student.TotalScore);//打印总成绩
        }
}

作者: 初英    时间: 2016-9-5 11:07
骚年,你想表达什么呢




欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/) 黑马程序员IT技术论坛 X3.2