学了两个星期才弄出来这几行JAVA代码 我得加快速度啊

class student{ float height; float weight; String name, sex, no; void setstudent(String n,String s,String n_){ name=n; sex=s; no=n_; }void setWH(float W,float H){ weight=W; height=H; } } public class A_110{ public static void main(String [] args) { student st1,...
2009-09-14 18:58 | 阅读 298 次 | 评论 0 条