javaplus

package test; public class Human { String name; char sex; int age; float height; float weight; public Human(String Name,char Sex,int Age){ this.name=Name; this.sex=Sex; this.age=Age; } public void information(){ System.out.println(name+"\n"+sex+"\n"+age); } public void eat(){ System.out.println("eat food"); } public static void main(String[] args){ new Human("李建",'男',18); } }

posted on 2017-10-29 15:36  哈哈呵  阅读(127)  评论(0编辑  收藏  举报

导航