博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
实例讲解-类设计分析(学生类)
阅读量:5782 次
发布时间:2019-06-18

本文共 1444 字,大约阅读时间需要 4 分钟。

程序的解题规范,

1,注意setter,getter的使用。

2,方法不要直接输出,而是交给被调用处输出

题目:

 

class Student{    private String stuno ;    private String name ;    private float math ;    private float english ;    private float computer ;    public Student(){}    public Student(String s,String n,float m,float e,float c){        this.setStuno(s) ;        this.setName(n) ;        this.setMath(m) ;        this.setEnglish(e) ;        this.setComputer(c) ;    }    public void setStuno(String s){        stuno = s ;    }    public void setName(String n){        name = n ;    }    public void setMath(float m){        math = m ;    }    public void setEnglish(float e){        english = e ;    }    public void setComputer(float c){        computer = c ;    }    public String getStuno(){        return stuno ;    }    public String getName(){        return name ;    }    public float getMath(){        return math ;    }    public float getEnglish(){        return english ;    }    public float getComputer(){        return computer ;    }    public float sum(){        // 求和操作        return  math + english + computer ;    }    public float avg(){        // 求平均值        return this.sum() / 3 ;    }    public float max(){        // 求最高成绩        float max = math ;    // 数学是最高成绩        max = max>computer?max:computer ;        max = max>english?max:english ;        return max ;    }    public float min(){        // 求最低成绩        float min = math ;    // 数学是最高成绩        min = min

 

转载地址:http://srcyx.baihongyu.com/

你可能感兴趣的文章
DEV-C++ 调试方法简明图文教程(转)
查看>>
VS2017+EF+Mysql生成实体数据模型(解决闪退的坑)
查看>>
C++多态、继承的简单分析
查看>>
库克称未来苹果用户可自己决定是否降频 网友:你是在搞笑吗?
查看>>
6倍性能差100TB容量,阿里云POLARDB咋实现?
查看>>
linux 安装 MySQLdb for python
查看>>
Sublime Text 2 技巧
查看>>
使用fscanf()函数从磁盘文件读取格式化数据
查看>>
网站一些error_log报错
查看>>
参加婚礼
查看>>
h5 audio相关手册
查看>>
linux命令学习--文件操作
查看>>
vim中代替esc的快捷键
查看>>
JDK文章列表-转载列表
查看>>
umask--设置用户文件和目录的文件创建缺省屏蔽值
查看>>
磁盘管理-quota
查看>>
刚毕业从事java开发需要掌握的技术
查看>>
CSS Custom Properties 自定义属性
查看>>
vim
查看>>
linux sort命令详解
查看>>