神圣御之助 2021-06-16 03:19 采纳率: 100%
浏览 21
已采纳

急求!!!!!!!!

 

  • 写回答

2条回答 默认 最新

  • 关注

    代码如下:

    
    public class 电话支付测试 {
    
    	public static void main(String[] args) {
    		MobilePhone mobile = new MobilePhone("15374363882", 80, 2, 30, 2);
    		Telephone tel = new Telephone("0797-8888888", 50, 2, 15);
    		mobile.pay();
    		mobile.display();
    		System.out.println("-------------------------------------------");
    		tel.pay();
    		tel.display();
    		
    	}
    }
    interface Payable{
    	void pay();
    }
    abstract class Phone{
    	String code;
    	public Phone(String code) {
    		this.code = code;
    	}
    	abstract void display();
    }
    class MobilePhone extends Phone implements Payable{
    	int time;
    	float price;
    	float internetFee;
    	float messageFee;
    	public MobilePhone(String code,int time,float price,float internetFee,float messageFee) {
    		super(code);
    		this.time = time;
    		this.price = price;
    		this.internetFee = internetFee;
    		this.messageFee = messageFee;
    	}
    	
    	@Override
    	void display() {
    		System.out.println("网费:¥"+ this.internetFee);
    		System.out.println("短信费:¥"+ this.messageFee);
    		System.out.println("通话费:¥"+ this.price*time);
    	}
    
    	@Override
    	public void pay() {
    		System.out.println("号码是:"+this.code +",本月费用合计:¥" + (price*time+internetFee+messageFee));
    		
    	}
    }
    class Telephone extends Phone implements Payable{
    	int time;
    	float price;
    	float monthFee;
    	public Telephone(String code,int time,float price,float monthFee) {
    		super(code);
    		this.time = time;
    		this.price = price;
    		this.monthFee = monthFee;
    	}
    	@Override
    	void display() {
    		System.out.println("¥月租费:"+ this.monthFee);
    		System.out.println("¥通话费:"+ this.price*time);
    	}
    	@Override
    	public void pay() {
    		System.out.println("号码是:"+this.code +",本月费用合计:¥" + (price*time+monthFee));
    	}
    }
    

    运行结果:

     

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥30 vb net 使用 sendMessage 如何输入鼠标坐标
  • ¥200 求能开发抖音自动回复卡片的软件
  • ¥15 关于freesurfer使用freeview可视化的问题
  • ¥100 谁能在荣耀自带系统MagicOS版本下,隐藏手机桌面图标?
  • ¥15 求SC-LIWC词典!
  • ¥20 有关esp8266连接阿里云
  • ¥15 C# 调用Bartender打印机打印
  • ¥15 我这个代码哪里有问题 acm 平台上显示错误 90%,我自己运行好像没什么问题
  • ¥50 C#编程中使用printDocument类实现文字排版打印问题
  • ¥15 找会编程的帅哥美女 可以用MATLAB里面的simulink编程,用Keil5编也可以。