設計說明:
1. 此筆訂單的資料如下:MineNote 1台、Note15 1台、PC 1台。
2. 利潤=總收入-總成本(非零件總成本)。
3. 如果此次收入淨額超過20000,則印出訊息[This order exceeds 20000:收入淨額]。
參考程式碼:
TQC+ Java 試題總整理
- import java.util.*;
- 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 MiniNote extends computer{
- 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 computer{
- 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;
- }
- }
- class Order{
- LinkedList<computer> pcs;
- Order(){
- pcs=new LinkedList<computer>();
- }
- public void in(computer i){
- pcs.add(i);
- }
- public double revenue(){
- double sum=0;
- for(computer apc:pcs){
- sum=sum+apc.getPrice()-apc.getCost();
- }
- return sum;
- }
- }
- public class JPA602_5{
- public static void main(String args[]){
- Order ord = new Order();
- ord.in(new MiniNote());
- ord.in(new Note15());
- ord.in(new PC());
- if (ord.revenue()>20000) System.out.println("This order exceeds 20000:"+ord.revenue());
- else System.out.println(ord.revenue());
- }
- }
TQC+ Java 試題總整理
聲明:
這裡的範例程式碼皆由本人親自編輯,歡迎轉載本教學,但請註明本網站,尊重一下作者的心血
沒有留言:
張貼留言
歡迎留言,較舊文章需要留言審核看不到自己的留言是正常的。
若長時間無回應請使用以下聯絡方式:
填寫表單:https://forms.gle/hxxX9n4tATcFnhnk8
寄信到:happyplayblogs@gmail.com