網站聲明

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

2015-05-20

TQC+ Java6 基本認識 601-3

601-3.
設計說明:

1. SLuxCar(超級豪華型車款)的成本=豪華東款的成本+音響成本。
2. 這型重的售價也是成本的1.2倍。請為這型重設計一個SLuxCar類別,並計算超級豪華型的成本與售價。
3. 也請為這家工廠增加一個方法、此方法能夠比較SLuxCar(超級豪華型單款)是否比LuxCar(豪華型車款)的售價較貴。
4. 顯示如執行結果參考畫面。

參考程式碼:
  1. class Unit{
  2.  double cost,price;
  3.  Unit(){cost = 0; price=0;}
  4.  public double cost(){return cost;}
  5.  public double price(){return price;}
  6. }
  7. class BasicCar extends Unit {
  8.  BasicCar(int i,String t){
  9.   cost = new Engine(i).cost+new Aircond(t).cost+5000;
  10.   price =cost*1.2;
  11.  }
  12. }
  13. class LuxCar extends Unit {
  14.  LuxCar(int i,String t){
  15.   cost = new Engine(i).cost+new Aircond(t).cost+10000;
  16.   price = cost*1.2;
  17.  }
  18. }
  19. class SLuxCar extends Unit {
  20.  public double price(){return price;}
  21.  SLuxCar(int i,String t){
  22.   cost = new Engine(i).cost+new Aircond(t).cost+new Sound().cost+10000;
  23.   price = cost*1.2;
  24.  }
  25.  public String expensive(LuxCar lc){
  26.   if (price()>lc.price) return "Yes!!";
  27.   else return "No!!";
  28.  }
  29. }
  30. class Engine extends Unit {
  31.  Engine(int i){
  32.   if (i==1600) cost=20000;
  33.   else if(i==2000) cost=25000;
  34.  }
  35. }
  36. class Aircond extends Unit{
  37.  Aircond(String t){
  38.   if (t.equals("Auto")) cost=12000;
  39.   else if (t.equals("Manual")) cost=10000;
  40.  }
  41. }
  42. class Sound extends Unit{
  43.  Sound(){
  44.   cost=2000;
  45.  }
  46. }
  47. public class JPA601_3{
  48.  public static void main(String args[]){
  49.   SLuxCar llc = new SLuxCar(2000,"Auto");
  50.   System.out.println("SLux cost: "  + llc.cost());
  51.   System.out.println("SLux price: " + llc.price());
  52.   LuxCar lc = new LuxCar(2000,"Auto");
  53.   System.out.println("Is llc more expensive than lc? " + llc.expensive(lc));
  54.  }
  55. }

TQC+ Java 試題總整理

聲明:

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

沒有留言:

張貼留言

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