網站聲明

本網站包含了各式各樣的資源,如果有侵占到您的著作權,請與本人通知,本人會立即改進。本站所有發表僅屬研究討論性質,如果有任何後果請自行負責。

2015-05-30

TQC+ Java6 基本認識 603-2

603-2.
設計說明:

1. 該冰店提供A與B兩類套餐產品。
2. A套餐可任點兩種原料,B套餐可任點三種原料。
3. 每種類原料的成本與售價如下表:
類別名稱
Cost(成本)
Price(售價)
Apple
6.0
10.0
Banana
2.0
5.0
Pudding
3.0
5.0
Strawberry
1.0
5.0
Mango
2.0
5.0
4. 某客人點了以下的產品,請利用getPirce(價格)函式取得price,利用getProfit(利潤)取得profit,並印出以下三種產品的price及profit。利潤 = 總收入 – 總成本,執行結果如圖所示 。

參考程式碼:
  1. class Unit{
  2.  double getCost,getPrice,getProfit;
  3.   Unit(){getCost = 0; getPrice = 0; getProfit = 0;}
  4.   public double getCost(){return getCost;}
  5.   public double getPrice(){return getPrice;}
  6.   public double getProfit(){return getProfit;}
  7.  }
  8. class Apple extends Unit{
  9.  Apple(){
  10.   getCost=6;
  11.   getPrice=10;
  12.  }
  13. }
  14. class Banana extends Unit{
  15.  Banana(){
  16.   getCost=2;
  17.   getPrice=5;
  18.  }
  19. }
  20. class Pudding extends Unit{
  21.  Pudding(){
  22.   getCost=3;
  23.   getPrice=5;
  24.  }
  25. }
  26. class Strawberry extends Unit{
  27.  Strawberry(){
  28.   getCost=1;
  29.   getPrice=5;
  30.  }
  31. }
  32. class Mango extends Unit{
  33.  Mango(){
  34.   getCost=2;
  35.   getPrice=5;
  36.  }
  37. }
  38. class A extends Unit{
  39.  A(Unit A,Unit B){
  40.   getCost=A.getCost()+B.getCost();
  41.   getPrice=A.getPrice()+B.getPrice();
  42.   getProfit=getPrice-getCost;
  43.  }
  44. }
  45. class B extends Unit{
  46.  B(Unit A,Unit B,Unit C){
  47.   getCost=A.getCost()+B.getCost()+C.getCost();
  48.   getPrice=A.getPrice()+B.getPrice()+C.getPrice();
  49.   getProfit=getPrice-getCost;
  50.  }
  51. }
  52. public class JPA603_2{
  53.  public static void main(String args[]){
  54.   A t1 = new A(new Apple()new Banana());
  55.   B t2 = new B(new Banana()new Pudding()new Strawberry());
  56.   B t3 = new B(new Apple()new Banana()new Mango());
  57.   System.out.println("t1 price:" + t1.getPrice());
  58.   System.out.println("t1 profit:" + t1.getProfit());
  59.   System.out.println("t2 price:" + t2.getPrice());
  60.   System.out.println("t2 profit:" + t2.getProfit());
  61.   System.out.println("t3 price:" + t3.getPrice());
  62.   System.out.println("t3 profit:" + t3.getProfit());
  63.  }
  64. }

TQC+ Java 試題總整理

聲明:

這裡的範例程式碼皆由本人親自編輯,歡迎轉載本教學,但請註明本網站,尊重一下作者的心血

沒有留言:

張貼留言

歡迎留言,較舊文章需要留言審核看不到自己的留言是正常的。
若長時間無回應請使用以下聯絡方式:
填寫表單:https://forms.gle/hxxX9n4tATcFnhnk8
寄信到:happyplayblogs@gmail.com