網站聲明

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

2015-05-24

TQC+ Java6 基本認識 602-3

602-3.
設計說明:

1. 請比較一台Note 15的筆電和一個PC類別的桌上型電腦何者售價較貴。
2. 請新增一個名為AllPC的類別,於此類別中撰寫isExpensive方法,此方法龍夠比較何者的售價較貴,並傳回一個布林值,顯示如執行結果參考畫面。

參考程式碼:
  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 Note15 extends computer{
  40.  Note15(){
  41.   getCost = (new LCD(15).cost + new CPU(2.2).cost + new HD(160).cost)*1.4;
  42.   getPrice = (new LCD(15).cost + new CPU(2.2).cost + new HD(160).cost)*2;
  43.  }
  44. }
  45. class AllPC{
  46.  double pc, note15;
  47.  AllPC(double a,double b){
  48.   pc=a;
  49.   note15=b;
  50.  }
  51.  public boolean isExpensive(){
  52.   if (pc>note15) return true;
  53.   else return false;
  54.  }
  55. }
  56. public class JPA602_3{
  57.  public static void main(String args[]){
  58.   PC pc = new PC();
  59.   Note15 note15 = new Note15();
  60.   AllPC allpc =new AllPC(pc.getPrice(),note15.getPrice());
  61.   if (allpc.isExpensive())System.out.println("PC is more expensive than Note15");
  62.   else System.out.println("Note15 is more expensive than PC");
  63.  }
  64. }

TQC+ Java 試題總整理

聲明:

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

沒有留言:

張貼留言

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