Topic: 输出一个学生的身高体重姓名年龄 |
Print this page |
1.输出一个学生的身高体重姓名年龄 | Copy to clipboard |
Posted by: 丫丫 Posted on: 2007-09-21 15:40 public class Student { private int age;//声明私有变量 String name;//声明成员变量 int hight,weight; public void shengao(int h,int w)//声明无返回值 { hight=h; weight=w; } public int Age()//声明带返回值的方法 { return age; } public void show() { System.out.println("我的名字是"+name); System.out.println("我的年龄是"+age+"岁"); System.out.println("体重是"+weight+"千克"); System.out.println("身高是"+hight+"厘米"); //系统从此执行 } public static void main(String[]args) { Student p; p=new Student(); p.name="欣欣"; p.age=20; p.hight=185; p.weight=70; p.show(); } } |
2.Re:输出一个学生的身高体重姓名年龄 [Re: 丫丫] | Copy to clipboard |
Posted by: andy_wang_5 Posted on: 2007-09-21 15:46 要养成好的习惯,尽量避免在程序中出现汉字。 (不是要你写英文,可以使用属性文件) |
3.Re:输出一个学生的身高体重姓名年龄 [Re: 丫丫] | Copy to clipboard |
Posted by: Dollyn Posted on: 2007-09-24 12:15 楼主想干什么? |
Powered by Jute Powerful Forum® Version Jute 1.5.6 Ent Copyright © 2002-2021 Cjsdn Team. All Righits Reserved. 闽ICP备05005120号-1 客服电话 18559299278 客服信箱 714923@qq.com 客服QQ 714923 |