1. 编写“电费管理类”及其测试类。
  • 第一步 编写“电费管理”类
  • 私有属性:上月电表读数、本月电表读数
  • 构造方法:无参、2个参数
  • 成员方法:getXXX()方法、setXXX()方法
  • 成员方法:显示上月、本月电表读数
  • 第二步 编写测试类
  • 创建对象一:上月电表读数为1000,本月电表读数为1200。

   要求:调用无参构造方法创建对象;

         调用setXXX()方法初始化对象;

         假设每度电的价格为1.2元,计算并显示本月电费。

  • 创建对象二:上月电表读数1200,本月电表读数为1450。

   要求:调用2个参数的构造方法创建并初始化对象;

   调用setXXX()方法修改本月电表读数为1500(模拟读错了需修改);

假设每度电的价格为1.2元,计算并显示本月电费。

import java.util.Scanner;

public class aaa {
Scanner in = new Scanner(System.in);
private int Lastmonth;
private int Thismonth;
public void print()
{ Double M;
System.out.println("请输入上个月与这个月的电费读表");
Lastmonth = in.nextDouble();
Thismonth= in.nextDouble();
M=(Thismonth-Lastmonth)*1.2;
System.out.println("电费为:"+M);
}
public int getLastMonth() {
return Lastmonth;
}
public void setLastMonth(int Lastmonth) {
this.Lastmonth = Lastmonth;
}
public int getThisMonth() {
return Thismonth;
}
public void ThisMonth(int Thismonth) {
Double M;
this.Thismonth =Thismonth;
M=(Thismonth)*1.2;
System.out.println("电费为:"+M);
}


}

package bbb;

import java.util.Scanner;


public class text {
public static void main(String args[]){
Scanner in = new Scanner(System.in);
Double Thismonth;
aaa c1=new aaa();
aaa c2=new aaa();
c1.print();
c2.print();
System.out.println("请重新输入本月电费:");
Thismonth=in.nextInt();
c2.ThisMonth(Thismonth);
}
}

05-02 13:55