博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
第四次实训作业
阅读量:6213 次
发布时间:2019-06-21

本文共 1372 字,大约阅读时间需要 4 分钟。

1 package LHB.inherit; 2  3 public class Electricityfees  4 { 5    private int lastmonth,thismonth;/*上月电表读数,本月电表读数*/ 6    public Electricityfees() 7    { 8         9    }10    public Electricityfees(int lastmonth,int thismonth)11    {12        this.lastmonth=lastmonth;13        this.thismonth=thismonth;14    }15    public int getLastmonth() 16     {17     return lastmonth;18     }19 20    public void setLastmonth(int lastmonth) 21     {22     this.lastmonth = lastmonth;23     }24 25   public int getThismonth() 26    {27     return thismonth;28    }29 30   public void setThismonth(int thismonth) 31    {32     this.thismonth = thismonth;33    }34    public void print()35    {36        System.out.print("上月电表读数为:"+lastmonth+"  ");37        System.out.println("这个月电表读数为:"+thismonth+"  ");38    }39 }
1 package LHB.inherit; 2  3 public class TestElectricity  4 { 5  6     public static void main(String[] args)  7     {    double x; 8          Electricityfees p=new Electricityfees(); 9          p.setLastmonth(1000);10          p.setThismonth(1200);11          x=p.getThismonth()*1.2;12          System.out.println("本月电费为:"+x);13          Electricityfees q=new Electricityfees(1200,1450);14          q.setThismonth(1500);15          x=q.getThismonth()*1.2;16          System.out.println("本月电费为:"+x);17     }18     19 }

 

 

转载于:https://www.cnblogs.com/bnvf/p/11031383.html

你可能感兴趣的文章
h5+css3最简单的图片飞入以及淡入淡出效果
查看>>
Instance Variables in ruby
查看>>
android实现触摸屏校准
查看>>
laravel 的安装
查看>>
jquery mobile validation
查看>>
uml 各种箭头的意思
查看>>
Dynamics 365/CRM 实体设计技巧
查看>>
Linux系统tree工具
查看>>
python之list+字典练习
查看>>
django-cbv模式-csrf中间件
查看>>
xcode xib 加载 、注意点
查看>>
Spring---Bean的继承与依赖
查看>>
LVS模式二:隧道模式(Tun)
查看>>
rsync 同步
查看>>
骑士问题 C组模拟赛
查看>>
设计 C组模拟赛
查看>>
Other things
查看>>
JZOJ 100046. 收集卡片
查看>>
OpenGL编程逐步深入(六)平移变换
查看>>
Django重新整理4---ModelForm-set(批量处理数据)
查看>>