摘要: 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 阅读全文
posted @ 2016-09-18 21:10 削肾客 阅读(5105) 评论(0) 推荐(0) 编辑
摘要: Account package com.hanqi.test; public class Account { private String zhanghao;private double yve; Account (String z,double c) { zhanghao=z; yve+=c; } 阅读全文
posted @ 2016-09-18 21:07 削肾客 阅读(5135) 评论(0) 推荐(0) 编辑
摘要: XiYouJiRenWu package com.hanqi.test; public class XiYouJiRenWu { String height,name,weapon; XiYouJiRenWu(String h,String n,String w) { height=h; name= 阅读全文
posted @ 2016-09-18 21:06 削肾客 阅读(1953) 评论(0) 推荐(0) 编辑
摘要: Ladder package com.hanqi.test; public class Ladder { //属性 double shangdi,xiadi,gao,mianji; //构造方法 Ladder(double sd,double xd,double g) { shangdi=sd; x 阅读全文
posted @ 2016-09-18 20:54 削肾客 阅读(3268) 评论(0) 推荐(0) 编辑