黑马程序员技术交流社区

标题: Test7 这样写 能过吗 [打印本页]

作者: 刘建华    时间: 2015-1-9 16:51
标题: Test7 这样写 能过吗
package com.itheima;
/**
声明类Student,包含3个成员变量:name、age、score,
要求可以通过 new Student("张三", 22, 95) 的方式创建对象,
并可以通过set和get方法访问成员变量
@author Administrator
*/
public class Test7
{
        //建立主函数
        public static void main(String[] args)
        {
                Student sd=new Student("张三", 22, 95);
                sd.setAge(18);
                sd.show();
        }
}
class Student  //定义一个学生的类
{
        private String name;
        private int age;
        private int score;
        //set 学生的变量
        public void setName(String newname)
        {
                name=newname;
        }
        public void setAge(int newage)
        {
                if(newage>=0)
                        age=newage;
                else
                        System.out.println("年龄错误");
        }
        public void setScore(int newscore)
        {
                if(newscore>=0&newscore<=150)
                        score=newscore;
                else
                        System.out.println("分数错误");
                       
        }
        //get 学生的变量
        public String getName()
        {
                return name;
        }
        public int getAge()
        {
                return age;
        }
        public int getScore()
        {
                return score;
        }
        //学生初始数据
        Student(String name,int age,int score)
        {
        this.name = name;
        this.age = age;
        this.score = score;
        }
        //打印学生的信息
        public void show()
        {
        System.out.println("Name: " + name + ", Age: "+ age  + ", Score:" + score);
    }
}



作者: Afridoce    时间: 2015-1-9 17:04
最好是思路,分析也写上去
作者: 碎流    时间: 2015-1-9 17:16
这样会被扣分,最起码要有思路,我觉得这是必须的,你没思路,你题怎么做的?背出来的???:lol




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