本文共 1852 字,大约阅读时间需要 6 分钟。
第一步 编写“电费管理”类
成员方法:getXXX()方法、setXXX()方法 创建对象一:上月电表读数为1000,本月电表读数为1200。 创建对象二:上月电表读数1200,本月电表读数为1450。 调用setXXX()方法修改本月电表读数为1500(模拟读错了需修改); package bbb;public class ccc { private int month,lastmonth;public ccc(){ }/*public ccc(int month,int lastmonth){ this.month=month;this.lastmonth=lastmonth;}*/public int getMonth() { return month;}public void setMonth(int month) { this.month = month;}public int getLastmonth() { return lastmonth;}public void setLastmonth(int lastmonth) { this.lastmonth = lastmonth;}public void month(){ System.out.println("今年电表读数为:"+this.month+"\n"+"今年电费为:"+month*1.2);}public void lastmonth(){ System.out.println("去年电表读数为:"+this.lastmonth+"\n"+"去年电费为:"+lastmonth*1.2);}} package bbb;import java.util.Scanner;public class Testccc { public static void main(String[] args) { ccc aa=new ccc();/*@SuppressWarnings("resource")Scanner sc=new Scanner();aa.setMonth(sc.nextInt());aa.setLastmonth(sc.nextInt());aa.month();aa.lastmonth();*/aa.setMonth(1000);aa.setLastmonth(1200);aa.month();aa.lastmonth();}} 编写“圆柱体”类及其测试类。 package bbb;public class circle { private int h, r;;public circle(){ }public int getH(){ return h;}public void setH(int h){ this.h=h;}public int getR(){ return r;}public void setR(int r){ this.r=r;}void S(){ System.out.println("底面积为:"+3.14*r*r);}void V(){ System.out.println("体积为:"+3.14*r*r*h);} } package bbb;public class Testcircle { public static void main(String[] args) { circle aa=new circle();aa.setH(4);aa.setR(2);aa.S();aa.V();}} 转载于:https://www.cnblogs.com/LYY1084702511/p/10773632.html