網站聲明

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

2015-05-24

TQC+ Java6 基本認識 602-2

602-2.
設計說明:

1. 請寫一個PC類別,一個PC類別的桌上型電腦有一個速度2.4的CPU及一個160G的HD。製造一個PC類別的桌上型電腦的成本是「零件成本」加500、售價則為「零件成本」的1.8倍。
2. 另請寫一個MultiPC類別,一個MultiPC的超級電腦,可以有多顆2.4G的CPU及多顆160G的HD。MultiPC的成本為其「零件成本」的1.2倍,售價為其「零件成本」的1.8倍。
3. 請製造一個PC類別的桌上型電腦,一個2顆CPU及4顆HD的MultiPC及一個4顆CPU及8顆HD的MultiPC。
4. 分別呼叫其getCost方法及getPrice方法,印出其傳回值。

參考程式碼:
  1. class Unit{
  2.  int cost;
  3.  Unit(){cost = 0;}
  4.  public int cost(){return cost;}
  5. }
  6. class LCD extends Unit{
  7.  LCD(int i){
  8.   if (i==10) cost=2000;
  9.   else if (i==15) cost=2500;
  10.   else if (i==17) cost=3000;
  11.  }
  12. }
  13. class CPU extends Unit{
  14.  CPU(double i){
  15.   if (i==1.66) cost=6000;
  16.   else if (i==2.2) cost=8000;
  17.   else if (i==2.4) cost=11000;
  18.  }
  19. }
  20. class HD extends Unit{
  21.  HD(int i){
  22.   if (i==120) cost=2400;
  23.   else if (i==160) cost=2800;
  24.  }
  25. }
  26. class computer{
  27.  double getCost;
  28.  double getPrice;
  29.  computer(){getCost = 0;getPrice = 0;}
  30.  public double getCost(){return getCost;}
  31.  public double getPrice(){return getPrice;}
  32. }
  33. class PC extends computer{
  34.  PC(){
  35.   getCost=new CPU(2.4).cost() + new HD(160).cost()+500;
  36.   getPrice=(new CPU(2.4).cost() + new HD(160).cost())*1.8;
  37.  }
  38. }
  39. class MultiPC extends computer{
  40.  MultiPC(int cpu,int hd){
  41.   getCost=(new CPU(2.4).cost()*cpu + new HD(160).cost()*hd)*1.2;
  42.   getPrice=(new CPU(2.4).cost()*cpu + new HD(160).cost()*hd)*1.8;
  43.  }
  44. }
  45. public class JPA602_2{
  46.  public static void main(String args[]){
  47.   System.out.println("PC cost:"+pc.getCost()+", price:"+pc.getPrice());
  48.   MultiPC multipc1 = new MultiPC(24);
  49.   System.out.println("MultiPC: 2CPU, 4HD, cost:"+multipc1.getCost()+", price:"+multipc1.getPrice());
  50.   MultiPC multipc2 = new MultiPC(48);
  51.   System.out.println("MultiPC: 4CPU, 8HD, cost:"+multipc2.getCost()+", price:"+multipc2.getPrice());
  52.  }
  53. }

TQC+ Java 試題總整理

聲明:

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

沒有留言:

張貼留言

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