博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
java第四次上机
阅读量:5098 次
发布时间:2019-06-13

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

第一步 编写“电费管理”类

私有属性:上月电表读数、本月电表读数
构造方法:无参、2个参数
成员方法:getXXX()方法、setXXX()方法
成员方法:显示上月、本月电表读数
第二步 编写测试类
创建对象一:上月电表读数为1000,本月电表读数为1200
要求:调用无参构造方法创建对象;
调用setXXX()方法初始化对象;
假设每度电的价格为1.2元,计算并显示本月电费。
创建对象二:上月电表读数1200,本月电表读数为1450
要求:调用2个参数的构造方法创建并初始化对象;
调用setXXX()方法修改本月电表读数为1500(模拟读错了需修改);
假设每度电的价格为1.2元,计算并显示本月电费。
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();
}
}
 
编写“圆柱体”类及其测试类。
3.1 “圆柱体”类
私有属性:圆底半径、高,
构造方法:带两个参数
方法1:计算底面积
方法2:计算体积
方法3:打印圆底半径、高、底面积和体积。
3.2 测试类
创建2个对象,并调用方法
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

你可能感兴趣的文章
FastDFS 分布式文件存储目录
查看>>
TmemoryStream ,bety[], TByteDynArray文件转化函数小结
查看>>
第一个只出现一次的字符
查看>>
235. Lowest Common Ancestor of a Binary Search Tree
查看>>
MySQL 备份恢复(导入导出)单个 innodb表
查看>>
语义分割的简单指南 A Simple Guide to Semantic Segmentation
查看>>
Javascript正则表达式
查看>>
常见笔记本进入bios方法
查看>>
左右滚动的东西
查看>>
Dwz手册的补充说明和常见问题
查看>>
Mybatis 传入List类型参数,报错:There is no getter for property named '__frch_item_0' in
查看>>
不可轻视复制构造函数
查看>>
Mysql高阶
查看>>
vb.net向Excel中写入值
查看>>
builder模式-积木系列
查看>>
POJ 3660 Cow Contest
查看>>
登录菜单权限验证
查看>>
leetcode-2-两数相加
查看>>
Flex弹性盒模型
查看>>
【随笔】vmstat性能监测
查看>>