設計說明:
1. 請撰寫一個LCD類別。10吋的成本是2000元,15吋的成本是2500元,17吋的成本是3000元。
2. 請撰寫一個CPU類別。速度1.66的成本是6000元,速度2.2的成本是8000元,速度2.4的成本是11000元。
3. 請撰寫一個HD類別。120G的成本是2400元,160G的成本是2800元。
4. 請使用以上的零件,撰寫以下的類別。
5. 請撰寫一個MiniNote類別。MiniNote類別的筆電有一個10吋的LCD個速度1.66的CPU及一個120G的HD。
6. 請撰寫一個Note15類別。Note15類別的筆電有一個15吋的LCD、一個速度2.2的CPU及一個160G的HD。
7. 這兩型筆電的成本是其零件成本的1.4倍。定價則是其零件成本的2倍。
8. 請分別製造一個MiniNote筆電及一個Note15筆電,呼叫其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 notebook{
- double getCost;
- int getPrice;
- notebook(){getCost = 0;getPrice = 0;}
- public double getCost(){return getCost;}
- public int getPrice(){return getPrice;}
- }
- class MiniNote extends notebook{
- MiniNote(){
- getCost = (new LCD(10).cost + new CPU(1.66).cost + new HD(120).cost)*1.4;
- getPrice = (new LCD(10).cost + new CPU(1.66).cost + new HD(120).cost)*2;
- }
- }
- class Note15 extends notebook{
- Note15(){
- getCost = (new LCD(15).cost + new CPU(2.2).cost + new HD(160).cost)*1.4;
- getPrice = (new LCD(15).cost + new CPU(2.2).cost + new HD(160).cost)*2;
- }
- }
- public class JPA602_1{
- public static void main(String args[]){
- MiniNote mininote = new MiniNote();
- System.out.println("MiniNote cost:"+mininote.getCost()+", price:"+mininote.getPrice());
- Note15 note15 = new Note15();
- System.out.println("Note15 cost:"+note15.getCost()+", price:"+note15.getPrice());
- }
- }
TQC+ Java 試題總整理
聲明:
這裡的範例程式碼皆由本人親自編輯,歡迎轉載本教學,但請註明本網站,尊重一下作者的心血
沒有留言:
張貼留言
歡迎留言,較舊文章需要留言審核看不到自己的留言是正常的。
若長時間無回應請使用以下聯絡方式:
填寫表單:https://forms.gle/hxxX9n4tATcFnhnk8
寄信到:happyplayblogs@gmail.com