题目1:
编写一个应用程序,模拟中介和购房者完成房屋购买过程。
共有一个接口和三个类:
- Business—— 业务接口
- Buyer —— 购房者类
- Intermediary—— 中介类
- Test —— 主类
1.业务接口
业务接口包括:
(1)两个数据域(成员变量)
RATIO: double型,代表房屋中介收取的中介费用占房屋标价的比例,初值为0.022
TAX:double型,代表购房需要交纳的契税费用占房屋标价的比例,初值为0.03
(2)一个方法
void buying (double price):price表示房屋总价
2.购房者类
购房者类Buyer是业务接口Business的非抽象使用类,包括:
(1)一个成员变量
name:String型,表示购房者姓名
(2)一个方法:
public void buying (double price):显示输出购买一套标价为price元的住宅
3.中介类
中介类Intermediary是业务接口Business的非抽象使用类,包括:
- 一个成员变量
buyer:Buyer型,代表房屋中介接待的购房对象
- 三个方法
Intermediary(Buyer buyer):构造方法
public void buying (double price):购房者buyer购买一套标价为price元的住宅,之后计算需要支付的中介费和交纳的契税
public void charing(double price):表示计算购买标价为price元的住宅时,房屋中介需要收取的中介费和需要交纳的契税(中介费计算公式:房屋标价* RATIO,契税计算公式:房屋标价*TAX)
4.Test类
在Test类中定义购房对象——姓名Lisa,从控制台输入她计划买的房屋标价,如650000元。请你通过上面定义的接口和类,实现她通过中介买房的过程,显示需交纳的中介费和契税。
二.源代码
1.Business.java
public interface Business { double RATIO=0.022; double TAX=0.03; void buying(double price); }
2.Buyer.java
public class Buyer implements Business { String name; public Buyer(String name) { this.name=name; } public void buying(double price) { System.out.println(name+"购买了一套总价为"+price+"元的住宅"); } }
3.Intermediary.java
public class Intermediary implements Business { Buyer buyer; public Intermediary(Buyer buyer) { this.buyer = buyer; } public void charing(double price){ System.out.println("中介公司收取的费用为:"+(price*Business.RATIO)+"元。"); System.out.println("所需交的契税为:"+(price*Business.TAX)+"元。"); } @Override public void buying(double price) { charing(price); } }
4.Test1.java
import java.util.Scanner; public class Test1 { public static void main(String[] args) { Scanner scanner=new Scanner(System.in); Business business=new Intermediary(new Buyer("Lisa")); System.out.println("输入要购买的房屋标价:"); double price=scanner.nextDouble(); business.buying(price); } }
三.运行截图
题目2:
输入5个数,代表学生成绩,计算其平均成绩。当输入值为负数或大于100时,通过自定义异常处理进行提示。
二.源代码
(1)定义一个异常类ErrorException 用于处理输入值为负数或大于100时的错误
public class ErrorException extends Exception { public String toString() { String num = null; return "自定义异常"+num; } public String getMessage() { return super.getMessage(); } }
(2)主类Test123
import java.util.Scanner; public class Test123 { public static void main(String[] args) { Scanner scanner=new Scanner(System.in); int sum=0; int score=0; try { for (int i = 0; i < 5; i++) { score=scanner.nextInt(); if(score<0||score>100) throw new ErrorException(); sum+=score; } System.out.println("平均成绩为:"+sum/5); } catch (ErrorException e){ System.out.println(e.toString()); } catch (Exception e){ System.out.println(e.getMessage()); } } }
三.运行截图