設計說明:
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方法,印出其傳回值。
參考程式碼:
TQC+ Java 試題總整理
- class Unit{
- int cost;
- Unit(){cost = 0;}
- public int cost(){return cost;}
- }
- class LCD extends Unit{
- LCD(int i){
- if (i==10) cost=2000;
- else if (i==15) cost=2500;
- else if (i==17) cost=3000;
- }
- }
- class CPU extends Unit{
- CPU(double i){
- if (i==1.66) cost=6000;
- else if (i==2.2) cost=8000;
- else if (i==2.4) cost=11000;
- }
- }
- class HD extends Unit{
- HD(int i){
- if (i==120) cost=2400;
- else if (i==160) cost=2800;
- }
- }
- class computer{
- double getCost;
- double getPrice;
- computer(){getCost = 0;getPrice = 0;}
- public double getCost(){return getCost;}
- public double getPrice(){return getPrice;}
- }
- class PC extends computer{
- PC(){
- getCost=new CPU(2.4).cost() + new HD(160).cost()+500;
- getPrice=(new CPU(2.4).cost() + new HD(160).cost())*1.8;
- }
- }
- class MultiPC extends computer{
- MultiPC(int cpu,int hd){
- getCost=(new CPU(2.4).cost()*cpu + new HD(160).cost()*hd)*1.2;
- getPrice=(new CPU(2.4).cost()*cpu + new HD(160).cost()*hd)*1.8;
- }
- }
- public class JPA602_2{
- public static void main(String args[]){
- System.out.println("PC cost:"+pc.getCost()+", price:"+pc.getPrice());
- MultiPC multipc1 = new MultiPC(2, 4);
- System.out.println("MultiPC: 2CPU, 4HD, cost:"+multipc1.getCost()+", price:"+multipc1.getPrice());
- MultiPC multipc2 = new MultiPC(4, 8);
- System.out.println("MultiPC: 4CPU, 8HD, cost:"+multipc2.getCost()+", price:"+multipc2.getPrice());
- }
- }
TQC+ Java 試題總整理
聲明:
這裡的範例程式碼皆由本人親自編輯,歡迎轉載本教學,但請註明本網站,尊重一下作者的心血
沒有留言:
張貼留言
歡迎留言,較舊文章需要留言審核看不到自己的留言是正常的。
若長時間無回應請使用以下聯絡方式:
填寫表單:https://forms.gle/hxxX9n4tATcFnhnk8
寄信到:happyplayblogs@gmail.com