摘要:
Clock package com.hanqi.test; public class Clock { int hour,minute,second; Clock(int h,int m,int s) { hour=h;minute=m;second=s; } void Show() { System 阅读全文
摘要:
Account package com.hanqi.test; public class Account { private String zhanghao;private double yve; Account (String z,double c) { zhanghao=z; yve+=c; } 阅读全文
摘要:
XiYouJiRenWu package com.hanqi.test; public class XiYouJiRenWu { String height,name,weapon; XiYouJiRenWu(String h,String n,String w) { height=h; name= 阅读全文
摘要:
Ladder package com.hanqi.test; public class Ladder { //属性 double shangdi,xiadi,gao,mianji; //构造方法 Ladder(double sd,double xd,double g) { shangdi=sd; x 阅读全文