zoukankan      html  css  js  c++  java
  • 学生成绩管理

    public class Grade {
        private
                   double english;
         double math;
        double Chinese;
         
        public:
                  Grade(double english, double math, double Chinese)
         {
            this.english = english;
            this.math = math;
            this.Chinese = Chinese;
        }
     
         double sum() 
        {
            return this.english+this.math+this.Chinese;
        }
         
         void displayTotal() 
        {
            System.out.println(sum());
        }
         
         double average() 
        {
            return total()/3;
        }
         
         void displayAverage() 
        {
            System.out.println(average());
        }
         double getEnglish() 
        {
            return english;
        }
     
         void setEnglish(double english)
         {
            this.english = english;
        }
     
        double getMath()
         {
            return math;
        }
     
        void setMath(double math)
         {
            this.math = math;
        }
     
        public double getChinese() 
         {
            return Chinese;
        }
     
        public void setChinese(double Chinese) {
            this.Chinese = Chinese;
        }
    }
    public class Student {
        String name;
        Grade grade;
        public Student(String name, Grade grade) {
            this.name = name;
            this.grade = grade;
        }
         
    public static void main(String[] args) 
    {
            Student s = new Student("Cici"new Grade(708090));
            s.grade.printAverage();
            s.grade.printTotal();
        }
    }
  • 相关阅读:
    李开复给学习计算机的学生的7点建议(转)
    linux 命令
    易中天的十句话
    11个笑话让你领悟人生
    心情不好的时候看看
    高校青年老师挣扎在辞职边缘 微薄工资继续啃老
    【33.00%】【vijos P1002】过河
    【33.33%】【codeforces 681D】Gifts by the List
    【19.05%】【codeforces 680D】Bear and Tower of Cubes
    【12.78%】【codeforces 677D】Vanya and Treasure
  • 原文地址:https://www.cnblogs.com/xxym/p/9101945.html
Copyright © 2011-2022 走看看