2013年2月8日 星期五

TQC+ 物件導向程式語言 Java 6 解題秘笈

TQC+ JAVA6 物件導向程式語言 認證
這是官方網站的介紹:連結

物件導向程式語言 (Java)
使用軟體代號應考時間測驗內容合格成績報名費
Java 6PJP100分鐘操作題共6題70分1500
  • 本認證採操作題,總分為100分。
  • 操作題第一至六類各考一題共六大題,第一大題至第五大題每題10分,第六大題每題50分,小計100分。
  • 於認證時間100分鐘內作答完畢並存檔,成績加總達70分(含)以上者該科合格。

相關書訊(碁峰出版):連結


第一類:基本認識 LINK
101字串列印、102單位換算、103計算平均值、104距離計算、105存錢筒、106數學函數、107運動成績、108覆載方法、109變數範圍、110圖形面積

第二類:條件判斷式 LINK
201分數篩選、202比較大小、203判斷奇偶數、204公倍數計算、205倍數判斷、206及格分數、207三角形邊長判斷、208分級制度、209象限座標、210鍵盤字元判斷

第三類:迴圈 LINK
301整數連加、302巢狀迴圈、303完美數、304餐點費用、305迴圈階乘計算、306迴圈次方計算、307迴圈最大公因數、308電腦週邊費用總計、309迴圈倍數判斷、310迴圈正偶數相加

第四類:遞迴程式設計 LINK
401遞迴階乘計算、402尾端遞迴階乘計算、403尾端遞迴次方計算、404遞迴最大公因數、405遞迴函數、406遞迴字串計算、407尾端遞迴計算總和、408遞迴字串反向、409遞迴字串移除、410遞迴字串替換

第五類:陣列設計能力 LINK
501陣列計算、502浮點數計算、503矩陣之和、504費氏數、505反轉陣列、506三維陣列元素之和、507停車費用計算、508泡泡排序法、509選擇排序法、510二分搜尋法

第六類:物件導向程式設計與例外處理
601汽車零件設計
602電腦零件設計
603冰品計價系統
604銀行理財帳戶
605成績資訊系統
606薪資計算
607電腦銷售業績
608食物熱量計算
609堆疊擴充
610員工薪資制度

本篇教學的程式碼皆由作者群編輯,歡迎轉貼本教學,但請全文轉貼,謝啦~

TQC+ JAVA 610 員工薪資制度

TQC+ JAVA6 試題總覽:LINK
Github 備份:LINK

/* TQC+ JAVA6 - 610_1 */
//建立抽象類別供子類別繼承
abstract class work{
String wno;
work(String s){
wno=s;
}
//建立一個每月收入抽象的方法
abstract double monthPay();
}
//建立一個SalaryWorker類別,繼承work,在此方法中有寫入紅利變數,但設定成0
class SalaryWorker extends work{
int mp;//年薪
int redp=0;//紅利
//建構子初始化員工編號、年薪
SalaryWorker(String s ,int i){
super(s);
mp=i;
}
double monthPay(){
return (mp/12.0+redp);
}
}
//建立一個HourlyWorker類別,繼承work
class HourlyWorker extends work{
int hr,hp;
//建構子初始化員工編號、工作時數、時薪
HourlyWorker(String s,int i1,int i2){
super(s);
hr=i2;
hp=i1;
}
double monthPay(){
return hr*hp;
}
}
//建立一個主管類別繼承SalaryWorker,該處將紅利的變數重新寫入
class Manager extends SalaryWorker{
Manager(String s,int i ,int i1){
super(s,i);
redp = i1;
}
}
public class JPA06_1 {
public static void main(String argv[]) {
//建立一個銷售員的物件
SalaryWorker sw1 = new SalaryWorker("96001",180000);
//取的該銷售員的月薪
System.out.println("SalaryWorker:" + sw1.monthPay());
//建立一個時薪人員的物件
HourlyWorker hw1 = new HourlyWorker("96002", 100, 160);
//取的該時薪人員的月薪
System.out.println("HourlyWorker:" + hw1.monthPay());
//建立一個主管的物件
Manager ma1 = new Manager("97001", 240000, 5000);
//取得該主管的月薪
System.out.println("Manager:" + ma1.monthPay());
}
}
/* TQC+ JAVA6 - 610_2 */
abstract class work{
String wno;
work(String s){
wno=s;
}
abstract double monthPay();
//建立一個比較薪水高低的方法
void ishight(work k){
if(monthPay()>k.monthPay())
System.out.println(wno+"較高");
else
System.out.println(k.wno+"較高");
}
//計算出每個人的應繳稅額
double monthTaxes(){
return monthPay()*0.15;
}
}
class SalaryWorker extends work{
int mp;
int redp=0;
SalaryWorker(String s ,int i){
super(s);
mp=i;
}
double monthPay(){
return (mp/12.0+redp);
}
}
class HourlyWorker extends work{
int hr,hp;
HourlyWorker(String s,int i1,int i2){
super(s);
hr=i2;
hp=i1;
}
double monthPay(){
return hr*hp;
}
}
class Manager extends SalaryWorker{
Manager(String s,int i ,int i1){
super(s,i);
redp = i1;
}
}
public class JPA06_2 {
public static void main(String argv[]) {
SalaryWorker sw1 = new SalaryWorker("96001",180000);
System.out.println("SalaryWorker:" + sw1.monthPay());
HourlyWorker hw1 = new HourlyWorker("96002", 100, 160);
System.out.println("HourlyWorker:" + hw1.monthPay());
Manager ma1 = new Manager("97001", 240000, 5000);
System.out.println("Manager:" + ma1.monthPay());
//比較(物件)sw1和(物件)hw1誰的薪水高
sw1.ishight(hw1);
//比較(物件)hw1和(物件)ma1誰的薪水高
hw1.ishight(ma1);
//取得每個人的應繳稅額
System.out.println("SalaryWorker稅額:" + sw1.monthTaxes());
System.out.println("HourlyWorker稅額:" + hw1.monthTaxes());
System.out.println("Manager稅額:" + ma1.monthTaxes());
}
}
/* TQC+ JAVA6 - 610_3 */
abstract class work{
String wno;
//新增員工人數變數
static int wt=0;
//新增總應繳稅額變數
static double tottax= 0.0;
work(String s){
wno=s;
wt++;
}
abstract double monthPay();
//建立取得平均應繳稅金額
static double getAverageTax(){
return ((double)tottax/wt);
}
void ishight(work k){
if(monthPay()>k.monthPay())
System.out.println(wno+"較高");
else
System.out.println(k.wno+"較高");
}
double monthTaxes(){
double sssss=monthPay()*0.15;
tottax = tottax+sssss;
return sssss;
}
}
class SalaryWorker extends work{
int mp;
int redp=0;
SalaryWorker(String s ,int i){
super(s);
mp=i;
}
double monthPay(){
return (mp/12.0+redp);
}
}
class HourlyWorker extends work{
int hr,hp;
HourlyWorker(String s,int i1,int i2){
super(s);
hr=i2;
hp=i1;
}
double monthPay(){
return hr*hp;
}
}
class Manager extends SalaryWorker{
Manager(String s,int i ,int i1){
super(s,i);
redp = i1;
}
}
public class JPA06_3 {
public static void main(String argv[]) {
SalaryWorker sw1 = new SalaryWorker("96001",180000);
HourlyWorker hw1 = new HourlyWorker("96002", 100, 160);
Manager ma1 = new Manager("97001", 240000, 5000);
System.out.println("SalaryWorker稅額:" + sw1.monthTaxes());
System.out.println("HourlyWorker稅額:" + hw1.monthTaxes());
System.out.println("Manager稅額:" + ma1.monthTaxes());
//計算出平均稅額
System.out.println("平均稅額:" + work.getAverageTax());
}
}
/* TQC+ JAVA6 - 610_4 */
import java.util.HashMap;
abstract class work{
String wno;
static int wt=0;
static double tottax= 0.0;
work(String s){
wno=s;
wt++;
}
abstract double monthPay();
static double getAverageTax(){
return ((double)tottax/wt);
}
void ishight(work k){
if(monthPay()>k.monthPay())
System.out.println(wno+"較高");
else
System.out.println(k.wno+"較高");
}
double monthTaxes(){
double sssss=monthPay()*0.15;
tottax = tottax+sssss;
return sssss;
}
}
class SalaryWorker extends work{
int mp;
int redp=0;
SalaryWorker(String s ,int i){
super(s);
mp=i;
}
double monthPay(){
return (mp/12.0+redp);
}
}
class HourlyWorker extends work{
int hr,hp;
HourlyWorker(String s,int i1,int i2){
super(s);
hr=i2;
hp=i1;
}
double monthPay(){
return hr*hp;
}
}
class Manager extends SalaryWorker{
Manager(String s,int i ,int i1){
super(s,i);
redp = i1;
}
}
//建立一個管理的類別
class Management{
HashMap worker;
//建構子初始化始化物件為HashMap
Management(){
worker=new HashMap();
}
//建立方法將物件放入HashMap中
void put(String s ,work ww){
worker.put(s, ww);
}
//建立方法取得扣除稅後的薪資
double afterTax(String s ){
work w = (work)worker.get(s);
return w.monthPay()-w.monthTaxes();
}
}
public class JPA06_4 {
public static void main(String argv[]) {
SalaryWorker sw1 = new SalaryWorker("96001",180000);
HourlyWorker hw1 = new HourlyWorker("96002", 100, 160);
Manager ma1 = new Manager("97001", 240000, 5000);
//建立一個管理的物件
Management m = new Management();
//將資料放素HashMap中
m.put("96001", sw1);
m.put("96002", hw1);
m.put("97001", ma1);
System.out.println("97001 的稅後薪資: " + m.afterTax("97001"));
}
}
/* TQC+ JAVA6 - 610_5 */
import java.util.HashMap;
import java.util.Iterator;
abstract class work{
String wno;
static int wt=0;
static double tottax= 0.0;
work(String s){
wno=s;
wt++;
}
abstract double monthPay();
static double getAverageTax(){
return ((double)tottax/wt);
}
void ishight(work k){
if(monthPay()>k.monthPay())
System.out.println(wno+"較高");
else
System.out.println(k.wno+"較高");
}
double monthTaxes(){
double sssss=monthPay()*0.15;
tottax = tottax+sssss;
return sssss;
}
}
class SalaryWorker extends work{
int mp;
int redp=0;
SalaryWorker(String s ,int i){
super(s);
mp=i;
}
double monthPay(){
return (mp/12.0+redp);
}
}
class HourlyWorker extends work{
int hr,hp;
HourlyWorker(String s,int i1,int i2){
super(s);
hr=i2;
hp=i1;
}
double monthPay(){
return hr*hp;
}
}
class Manager extends SalaryWorker{
Manager(String s,int i ,int i1){
super(s,i);
redp = i1;
}
}
class Management{
HashMap worker;
double total =0;
Management(){
worker=new HashMap();
}
void put(String s ,work ww){
worker.put(s, ww);
}
double totalSalary() throws limex{
for(Iterator iterator = worker.values().iterator();iterator.hasNext();){
work www =(work)iterator.next();
total = www.monthPay()+total;
if(total>50000)//當總月薪超過50000時,則會拋出錯誤訊息
throw new limex(total);
}
return total;
}
}
//新增一個exception的類別
class limex extends Exception{
double dd;
limex(double d){
dd=d;
}
double getAm(){
return dd;
}
}
public class JPA06_5 {
public static void main(String argv[]) {
SalaryWorker sw1 = new SalaryWorker("96001",180000);
HourlyWorker hw1 = new HourlyWorker("96002", 100, 160);
Manager ma1 = new Manager("97001", 240000, 5000);
Management m = new Management();
m.put("96001", sw1);
m.put("96002", hw1);
m.put("97001", ma1);
//抓取錯誤訊息
try {
m.totalSalary();
} catch (limex e) {
System.out.println("Total salary exceed limit:"+e.getAm());
}
}
}


TQC+ JAVA6 試題總覽:LINK
Github 備份:LINK

本篇教學的程式碼皆由筆者編輯,歡迎轉貼本教學,但請全文轉貼,謝啦~

TQC+ JAVA 609 堆疊擴充

TQC+ JAVA6 試題總覽:LINK
Github 備份:LINK

/* TQC+ JAVA6 - 609_1 */
//建立BoundedStack的類別
class BoundedStack{
String[] bs;
int top=-1;
int max;
//初始化建構子
BoundedStack(int i){
//設定陣列大小
bs = new String[i];
max = i;
}
//建立一個加元素到陣列的方法
void push(String s){
if(top<max-1)
bs[++top]=s;//先++將陣列一開始從-1變成0
else
System.out.println("stack-overflow");
}
//建立一個將元素從陣列中拋出(需要return值)
String pop(){
String s ;
if(top>=0)
s = bs[top--];//先將該位置的值拋出,再將index--
else
s = "stack-is-empty";
return s;
}
//建立一個方法判斷該陣列是否為空
boolean empty(){
return top == -1;
}
}
public class JPA06_1 {
public static void main(String args[]) {
//設定陣列大小
BoundedStack s = new BoundedStack(3);
//將元素加入到陣列中
s.push("abc");
s.push("def");
s.push("ghi");
//最後一個元素,因陣列大小不構,而無法寫入
s.push("jkl");
//拋出時,先進的會後拋出
System.out.println(s.pop());
System.out.println(s.pop());
System.out.println(s.pop());
//判斷陣列是否為空的
System.out.println(s.empty());
}
}
/* TQC+ JAVA6 - 609_2 */
import java.util.LinkedList;
//建立一個UnboundedStack的類別
class UnboundedStack{
LinkedList ubs;
//建構子初始化為LinkedList
UnboundedStack(){
ubs = new LinkedList();
}
//建立判斷方法,確定該陣列是否為空
boolean empty(){
return ubs.size() == 0;
}
//建立將元素放入陣列的方法
void push(String s){
//主要是透過內建的函數來控制
ubs.addFirst(s);
}
//建立將元素拋出的方法
String pop(){
if(!empty()){
//取得第一個元素後,將第一個元素值移除
String s = (String)ubs.getFirst();
ubs.removeFirst();
return s;
} else {
return "Stack is empty!!";
}
}
}
public class JPA06_2 {
public static void main(String args[]) {
UnboundedStack s = new UnboundedStack();
s.push("abc");
s.push("def");
s.push("ghi");
s.push("jkl");
System.out.println(s.pop());
System.out.println(s.pop());
System.out.println(s.pop());
//檢查陣列是否為空的,因仍有一個元素在陣列中,回傳false
System.out.println(s.empty());
System.out.println(s.pop());
System.out.println(s.empty());
}
}
/* TQC+ JAVA6 - 609_3 */
/*
* 該題主要是整合前兩題,前兩題的區別在於
* 第一題:使用陣列,讓使用者自行去控制陣列的index值,決定拋出與堆入的功能
* 第二題:使用到陣列的方法功能讓使用者能呼叫函式去控制資料的進出
*/
import java.util.LinkedList;
//建立一個抽象的stack類別
abstract class stack{
stack(){}
//建立抽象的方法,待子類別來實作
public abstract String pop();
public abstract void push(String s);
//建立一個方法,可以還傳
public String top(){
String s = pop();
push(s);
return s;
}
}
class BoundedStack extends stack{
String[] bs;
int top=-1;
int max;
BoundedStack(int i){
bs = new String[i];
max = i;
}
public void push(String s){
if(top<max-1)
bs[++top]=s;
else
System.out.println("stack-overflow");
}
public String pop(){
String s ;
if(top>=0)
s = bs[top--];
else
s = "stack-is-empty";
return s;
}
boolean empty(){
return top == -1;
}
}
class UnboundedStack extends stack{
LinkedList ubs;
UnboundedStack(){
ubs = new LinkedList();
}
boolean empty(){
return ubs.size() == 0;
}
public void push(String s){
ubs.addFirst(s);
System.out.println("Pushing:"+s);
}
public String pop(){
if(!empty()){
String s = (String)ubs.getFirst();
ubs.removeFirst();
System.out.println("Poping:"+s);
return s;
} else {
return "Stack is empty!!";
}
}
}
//繼承UnboundedStack,新增方法取得陣列大小
class TraceUnboundedStack extends UnboundedStack{
int getSize(){
return ubs.size();
}
}
public class JPA06_3 {
public static void main(String args[]) {
TraceUnboundedStack s2 = new TraceUnboundedStack();
s2.push("abc");
s2.push("def");
s2.push("ghi");
s2.push("jkl");
//取得陣列大小
System.out.println(s2.getSize());
//進行top方法(先拋出後堆回)
System.out.println(s2.top());
//持續拋出
System.out.println(s2.pop());
System.out.println(s2.pop());
System.out.println(s2.pop());
System.out.println(s2.empty());
System.out.println(s2.pop());
System.out.println(s2.empty());
System.out.println(s2.getSize());
}
}
/* TQC+ JAVA6 - 609_4 */
import java.util.LinkedList;
//這題主要是將先前回傳值為String的部分,改變成Object
abstract class stack
{
stack(){}
public abstract Object pop();
public abstract void push(Object s);
public Object top(){
Object s = pop();
push(s);
return s;
}
}
class UnboundedStack extends stack{
LinkedList ubs;
UnboundedStack(){
ubs = new LinkedList();
}
boolean empty(){
return ubs.size() == 0;
}
public void push(Object s){
ubs.addFirst(s);
}
public Object pop(){
if(!empty()){
Object s = ubs.getFirst();
ubs.removeFirst();
return s;
} else {
return null;
}
}
}
public class JPA06_4 {
public static void main(String args[]) {
UnboundedStack s = new UnboundedStack();
s.push("abc");
s.push(2);
s.push("ghi");
System.out.println(s.top());
System.out.println(s.pop());
System.out.println(s.pop());
System.out.println(s.pop());
System.out.println(s.pop());
}
}
/* TQC+ JAVA6 - 609_5 */
import java.util.LinkedList;
abstract class stack{
stack(){}
//丟出錯誤時,不要丟出Exception,而是丟出自行撰寫的錯誤類別名稱
public abstract Object pop() throws exnull;
public abstract void push(Object s);
//新增拋出錯誤的功能
public Object top() throws exnull{
Object s = pop();
push(s);
return s;
}
}
class UnboundedStack extends stack{
LinkedList ubs;
UnboundedStack(){
ubs = new LinkedList();
}
boolean empty(){
return ubs.size() == 0;
}
public void push(Object s){
ubs.addFirst(s);
}
public Object pop() throws exnull{
if(!empty()){
Object s = ubs.getFirst();
ubs.removeFirst();
return s;
} else {
//前幾題在這邊會直接print出來錯誤訊息,這邊則是將資訊包在exception拋出來
throw new exnull("Stack is empty!!");
}
}
}
//新增一個類別,繼承Exception
class exnull extends Exception{
exnull(String s){
System.out.println(s);
}
}
public class JPA06_5 {
public static void main(String args[]) {
try {
UnboundedStack s = new UnboundedStack();
s.push("abc");
s.push(2);
s.push("ghi");
System.out.println(s.top());
System.out.println(s.pop());
System.out.println(s.pop());
System.out.println(s.pop());
System.out.println(s.pop());
//抓取錯誤時,使用自行撰寫的exception方法
}catch(exnull e){
}
}
}


TQC+ JAVA6 試題總覽:LINK
Github 備份:LINK

本篇教學的程式碼皆由筆者編輯,歡迎轉貼本教學,但請全文轉貼,謝啦~

TQC+ JAVA 608 食物熱量計算

TQC+ JAVA6 試題總覽:LINK
Github 備份:LINK

/* TQC+ JAVA6 - 608_1 */
//建立抽象的食物類別
abstract class Food{
int amount;
int calorie;
//建構子初始化份量
Food(int i){
amount=i;
}
//建立設定卡洛里方法
void setCaloriePerGram(int i){
calorie=i;
}
//建立取得份量的方法
int getAmount(){
return amount;
}
//建立取得份量的抽象方法,待繼承者去實作
abstract int getCalorie();
}
//繼承食物
class Rice extends Food{
Rice(int i){
super(i);
calorie=1;
}
int getCalorie(){
return getAmount()*calorie;
}
}
//繼承食物
class Egg extends Food{
Egg(int i){
super(i);
calorie=2;
}
int getCalorie(){
return getAmount()*calorie;
}
}
//繼承食物
class Cabbage extends Food{
Cabbage(int i){
super(i);
calorie=1;
}
int getCalorie(){
return getAmount()*calorie;
}
}
//繼承食物
class PorkRib extends Food{
PorkRib(int i){
super(i);
calorie=10;
}
int getCalorie(){
return getAmount()*calorie;
}
}
//繼承食物
class Carrot extends Food{
Carrot(int i){
super(i);
calorie=1;
}
int getCalorie(){
return getAmount()*calorie;
}
}
class JPA06_1{
public static void main(String args[]){
//建立米的物件
Rice rice = new Rice(100);
System.out.println( rice.getAmount() + " grams of rice has " + rice.getCalorie() + " calories.");
//建立蛋的物件
Egg egg = new Egg(30);
System.out.println( egg.getAmount() + " grams of egg has " + egg.getCalorie() + " calories.");
//建立高麗菜的物件
Cabbage cabbage = new Cabbage(50);
System.out.println( cabbage.getAmount() + " grams of cabbage has " + cabbage.getCalorie() + " calories.");
//建立排骨的物件
PorkRib porkRib = new PorkRib(300);
System.out.println( porkRib.getAmount() + " grams of pork rib has " + porkRib.getCalorie() + " calories.");
//建立胡蘿蔔的物件
Carrot carrot = new Carrot(100);
System.out.println( carrot.getAmount() + " grams of carrot has " + carrot.getCalorie() + " calories.");
}
}
/* TQC+ JAVA6 - 608_2 */
import java.util.Iterator;
import java.util.Vector;
abstract class Food{
int amount;
int calorie;
Food(int i){
amount=i;
}
void setCaloriePerGram(int i){
calorie=i;
}
int getAmount(){
return amount;
}
abstract int getCalorie();
}
class Rice extends Food{
Rice(int i){
super(i);
calorie=1;
}
int getCalorie(){
return getAmount()*calorie;
}
}
class Egg extends Food{
Egg(int i){
super(i);
calorie=2;
}
int getCalorie(){
return getAmount()*calorie;
}
}
class Cabbage extends Food{
Cabbage(int i){
super(i);
calorie=1;
}
int getCalorie(){
return getAmount()*calorie;
}
}
class PorkRib extends Food{
PorkRib(int i){
super(i);
calorie=10;
}
int getCalorie(){
return getAmount()*calorie;
}
}
class Carrot extends Food{
Carrot(int i){
super(i);
calorie=1;
}
int getCalorie(){
return getAmount()*calorie;
}
}
//建立便當盒的物件
class LunchBox{
int calorie;
Vector content;
//建構子初始為向量的物件
LunchBox(){
content=new Vector();
}
//建立增加物件的方法
void add(Food f){
content.add(f);
}
//建立取得整個便當盒卡洛里的方法
int getCalorie(){
int i =0;
for(Iterator iterator = content.iterator();iterator.hasNext();){
Food f = (Food)iterator.next();
i+=f.getCalorie();
}
return i;
}
}
class JPA06_2{
public static void main(String args[])
{
//建立economy的便當盒物件
LunchBox economy = new LunchBox();
//將各個元素加入便當盒物件
economy.add(new Rice(200));
economy.add(new Cabbage(100));
economy.add(new PorkRib(250));
System.out.println("Total calories of an economy lunch box are " + economy.getCalorie() +".");
//建立economy的便當盒物件
LunchBox valuedChoice = new LunchBox();
//將各個元素加入便當盒物件
valuedChoice.add(new Rice(200));
valuedChoice.add(new Egg(30));
valuedChoice.add(new Carrot(100));
valuedChoice.add(new PorkRib(300));
System.out.println("Total calories of a valued-choice lunch box are " + valuedChoice.getCalorie()+".");
}
}
/* TQC+ JAVA6 - 608_3 */
import java.util.Iterator;
import java.util.Vector;
abstract class Food{
int amount;
int calorie;
//新增單位成本
int unitCost;
Food(int i){
amount=i;
}
void setCaloriePerGram(int i){
calorie=i;
}
//設定單位成本方法
void setUnitCost(int i){
unitCost=i;
}
//取得成本方法
int getCost(){
return unitCost*amount;
}
int getAmount(){
return amount;
}
abstract int getCalorie();
}
class Rice extends Food{
Rice(int i){//在子類別中設定好單位價錢
super(i);
calorie=1;
unitCost=1;
}
int getCalorie(){
return getAmount()*calorie;
}
}
class Egg extends Food{
Egg(int i){//在子類別中設定好單位價錢
super(i);
calorie=2;
unitCost=2;}
int getCalorie(){
return getAmount()*calorie;
}
}
class Cabbage extends Food{
Cabbage(int i){//在子類別中設定好單位價錢
super(i);
calorie=1;
unitCost=3;
}
int getCalorie(){
return getAmount()*calorie;
}
}
class PorkRib extends Food{
PorkRib(int i){//在子類別中設定好單位價錢
super(i);
calorie=10;
unitCost=8;}
int getCalorie(){
return getAmount()*calorie;
}
}
class Carrot extends Food{
Carrot(int i){
super(i);
calorie=1;
unitCost=3;
}
int getCalorie(){
return getAmount()*calorie;
}
}
class LunchBox{
int calorie;
Vector content;
LunchBox(){
content=new Vector();
}
//新增一個變數,該變數乘以成本可以得到售價
double priceRatio;
void setPriceRatio(double d){
priceRatio=d;
}
double getPrice(){
double i =0;
for(Iterator iterator = content.iterator();iterator.hasNext();){
Food f = (Food)iterator.next();
i+=f.getCost()*priceRatio;
}
return i;
}
void add(Food f){
content.add(f);
}
int getCalorie(){
int i =0;
for(Iterator iterator = content.iterator();iterator.hasNext();){
Food f = (Food)iterator.next();
i+=f.getCalorie();
}
return i;
}
}
class JPA06_3{
public static void main(String args[]){
LunchBox economy = new LunchBox();
economy.add(new Rice(200));
economy.add(new Cabbage(100));
economy.add(new PorkRib(250));
//設定變數值
economy.setPriceRatio(1.2);
System.out.println("Total calories of an economy lunch box are " + economy.getCalorie());
System.out.println("The price of an economy lunch box is " + economy.getPrice());
LunchBox valuedChoice = new LunchBox();
valuedChoice.add(new Rice(200));
valuedChoice.add(new Egg(30));
valuedChoice.add(new Carrot(100));
valuedChoice.add(new PorkRib(300));
//設定變數值
valuedChoice.setPriceRatio(1.3);
System.out.println("Total calories of a valued-choice lunch box are " + valuedChoice.getCalorie());
System.out.println("The price of a valued-choice lunch box is " + valuedChoice.getPrice());
}
}
/* TQC+ JAVA6 - 608_4 */
import java.util.Iterator;
import java.util.Vector;
abstract class Food{
int amount;
int calorie;
int unitCost;
Food(int i){
amount=i;
}
void setCaloriePerGram(int i){
calorie=i;
}
void setUnitCost(int i){
unitCost=i;
}
int getCost(){
return unitCost*amount;}
int getAmount(){
return amount;
}
abstract int getCalorie();
}
class Rice extends Food{
Rice(int i){
super(i);
calorie=1;
unitCost=1;
}
int getCalorie(){
return getAmount()*calorie;
}
}
class Egg extends Food{
Egg(int i){
super(i);
calorie=2;
unitCost=2;
}
int getCalorie(){
return getAmount()*calorie;
}
}
class Cabbage extends Food{
Cabbage(int i){
super(i);
calorie=1;
unitCost=3;
}
int getCalorie(){
return getAmount()*calorie;
}
}
class PorkRib extends Food{
PorkRib(int i){
super(i);
calorie=10;unitCost=8;
}
int getCalorie(){
return getAmount()*calorie;
}
}
class Carrot extends Food{
Carrot(int i){
super(i);
calorie=1;
unitCost=3;
}
int getCalorie(){
return getAmount()*calorie;
}
}
class LunchBox{
int calorie;
Vector content;
LunchBox(){
content=new Vector();
}
double priceRatio;
void setPriceRatio(double d){
priceRatio=d;
}
//新增一個比較價位高低方法
String isCheaperThan(LunchBox lb){
//lb.getPrice()是指外部傳入那個便當盒
if(getPrice()<lb.getPrice())
return "YES";
else
return "NO";
}
double getPrice(){
double i =0;
for(Iterator iterator = content.iterator();iterator.hasNext();){
Food f = (Food)iterator.next();
i+=f.getCost()*priceRatio;
}
return i;
}
void add(Food f){
content.add(f);
}
int getCalorie(){
int i =0;
for(Iterator iterator = content.iterator();iterator.hasNext();){
Food f = (Food)iterator.next();
i+=f.getCalorie();
}
return i;
}
}
class JPA06_4{
public static void main(String args[]){
LunchBox economy = new LunchBox();
economy.add(new Rice(200));
economy.add(new Cabbage(100));
economy.add(new PorkRib(250));
economy.setPriceRatio(1.2);
LunchBox valuedChoice = new LunchBox();
valuedChoice.add(new Rice(200));
valuedChoice.add(new Egg(30));
valuedChoice.add(new Carrot(100));
valuedChoice.add(new PorkRib(300));
valuedChoice.setPriceRatio(1.3);
//比較方法
System.out.println("Is the economy lunch box cheaper than the valued-choice? " + economy.isCheaperThan(valuedChoice));
}
}
/* TQC+ JAVA6 - 608_5 */
import java.util.ArrayList;
import java.util.Iterator;
import java.util.Vector;
abstract class Food{
int amount;
int calorie;
int unitCost;
Food(int i){
amount=i;
}
void setCaloriePerGram(int i){
calorie=i;
}
void setUnitCost(int i){
unitCost=i;
}
int getCost(){
return unitCost*amount;
}
int getAmount(){
return amount;
}
abstract int getCalorie();
}
class Rice extends Food{
Rice(int i)
{super(i);calorie=1;unitCost=1;}
int getCalorie(){return getAmount()*calorie;}
}
class Egg extends Food{
Egg(int i){
super(i);
calorie=2;
unitCost=2;
}
int getCalorie(){
return getAmount()*calorie;
}
}
class Cabbage extends Food{
Cabbage(int i){
super(i);
calorie=1;
unitCost=3;}
int getCalorie(){
return getAmount()*calorie;
}
}
class PorkRib extends Food{
PorkRib(int i){
super(i);
calorie=10;
unitCost=8;
}
int getCalorie(){
return getAmount()*calorie;
}
}
class Carrot extends Food{
Carrot(int i){
super(i);
calorie=1;
unitCost=3;
}
int getCalorie(){
return getAmount()*calorie;
}
}
class LunchBox{
int calorie;
Vector content;
LunchBox(){
content=new Vector();
}
double priceRatio;
void setPriceRatio(double d){
priceRatio=d;
}
String isCheaperThan(LunchBox lb){
if(getPrice()<lb.getPrice())
return "YES";
else
return "NO";
}
double getPrice(){
double i =0;
for(Iterator iterator = content.iterator();iterator.hasNext();){
Food f = (Food)iterator.next();i+=f.getCost()*priceRatio;
}
return i;
}
int getCost(){
int i =0;
for(Iterator iterator = content.iterator();iterator.hasNext();){
Food f = (Food)iterator.next();i+=f.getCost();
}
return i;
}
void add(Food f){
content.add(f);
}
int getCalorie(){
int i =0;
for(Iterator iterator = content.iterator();iterator.hasNext();){
Food f = (Food)iterator.next();
i+=f.getCalorie();
}
return i;
}
}
//建立銷售報告類別
class SaleReport{
ArrayList ss;
int mun=0;
//建構子初始化為ArrayList
SaleReport(){
ss=new ArrayList();
}
//將便當盒加入至陣列中
void add(LunchBox ff){
ss.add(ff);
mun++;//每增加一次,便當盒數量會+1
}
//建立取得數量的方法
int getNumberOfLunchBox(){
return mun;
}
//建立取得利潤的方法
int getProfit(){
int i =0;
for(Iterator iterator = ss.iterator();iterator.hasNext();){
LunchBox lbb = (LunchBox)iterator.next();
i+=lbb.getPrice()-lbb.getCost();
}
return i;
}
}
class JPA06_5{
public static void main(String args[]){
LunchBox economy = new LunchBox();
economy.add(new Rice(200));
economy.add(new Cabbage(100));
economy.add(new PorkRib(250));
economy.setPriceRatio(1.2);
LunchBox valuedChoice = new LunchBox();
valuedChoice.add(new Rice(200));
valuedChoice.add(new Egg(30));
valuedChoice.add(new Carrot(100));
valuedChoice.add(new PorkRib(300));
valuedChoice.setPriceRatio(1.3);
SaleReport sr = new SaleReport();
sr.add(economy);
sr.add(valuedChoice);
System.out.println( sr.getNumberOfLunchBox() + " lunch boxes have been sold.");
System.out.println("Profit is " + sr.getProfit() + ".");
}
}


TQC+ JAVA6 試題總覽:LINK
Github 備份:LINK

本篇教學的程式碼皆由筆者編輯,歡迎轉貼本教學,但請全文轉貼,謝啦~

TQC+ JAVA 607 電腦銷售業績

TQC+ JAVA6 試題總覽:LINK
Github 備份:LINK

/* TQC+ JAVA6 - 607_1 */
//建立NB的類別
class NB{
int cost;
NB(int i){
if(i==1)
cost=10000;
else
cost=8500;
}
int getCost(){
return cost;
}
}
public class JPA06_1 {
public static void main(String args[]){
NB e1 = new NB(1);
System.out.println("一台17'筆記型電腦成本:"+e1.getCost());
NB e2 = new NB(2);
System.out.println("一台14'筆記型電腦成本:"+e2.getCost());
}
}
/* TQC+ JAVA6 - 607_2 */
class NB{
int cost;
NB(int i){
if(i==1)
cost=5000;
else
cost=8500;}
int getCost(){
return cost;
}
}
//建立CPU類別
class CPU{
int cost;
CPU(String s){
if(s.equals("basic"))
cost = 1000;
else
cost = 2000;
}
int getCost(){
return cost;
}
}
abstract class CNB{
NB b;
CPU c;
//建構子初始化,傳入NB等級和CPU等級
CNB(int i,String s){
b=new NB(i);
c=new CPU(s);
}
//建立成本方法
abstract double cost();
//建立價錢方法
double price(){
return cost()*1.5;
}
}
//繼承CNB
class BasicNB extends CNB{
BasicNB(int i ,String s){
super(i,s);
}
double cost(){
return b.getCost()+c.getCost()+1000;
}
}
//繼承CNB
class LuxNB extends CNB{
LuxNB(int i ,String s){
super(i,s);
}
double cost(){
return b.getCost()+c.getCost()+2000;
}
}
public class JPA06_2 {
public static void main(String args[]){
BasicNB bc = new BasicNB(1,"basic");
System.out.println("商用電腦成本: " + bc.cost());
System.out.println("商用電腦售價: " + bc.price());
LuxNB lc = new LuxNB(2,"Lux");
System.out.println("高階雙核心電腦成本: " + lc.cost());
System.out.println("高階雙核心電腦售價: " + lc.price());
}
}
/* TQC+ JAVA6 - 607_3 */
public class JPA06_3 {
public static void main(String[] arge){
int[][] n ={
{120,420,315,250,418,818,900},
{312,183,215,89,83,600,700},
{215,500,430,210,300,918,880}
};
String[] nn={"北部","中部","南部"};
System.out.println("\n\t 第一電腦科技公司週報表 ( 單 位 : 萬 元 ) ");
System.out.println( "直營店 \t 一 \t 二 \t 三 \t 四 \t 五 \t六 \t 日 \t ");
System.out.println( "=====\t====\t====\t====\t====\t====\t====\t====");
//主要是使用兩層的for loop,第一層主要是顯示區域,第二層顯示總營業額
for(int a=0;a<3;a++){
System.out.print(nn[a]+"\t");
for(int b=0;b<7;b++){
System.out.print(n[a][b]+"\t");
}
System.out.println("");
}
}
}
/* TQC+ JAVA6 - 607_4 */
public class JPA06_4 {
public static void main(String[] arge){
String[] map = { "北部" , "中部" , "南部" };
int[][] salary = {
{ 120, 420, 315, 250, 418, 818, 900 },
{ 312, 183, 215, 89, 83, 600, 700 },
{ 215, 500, 430, 210, 300, 918, 880 }
};
int cost[] = {180, 200, 360};
int cost1[] = {1500, 1515, 1858};
int sum[] = {0, 0, 0};
double data[] = {0, 0, 0};
int i , j , i_max=3;
double ratio;
//透過兩層的for loop計算出各店的總營業額
for(int b=0;b<salary.length;b++){
for(int a=0;a<salary[b].length;a++){
sum[b]+=salary[b][a];
}
}
//計算每家的毛利率
for(int a = 0;a<data.length;a++){
data[a]=((sum[a]-cost[a]-cost1[a])/(double)(cost[a]+cost1[a])*100);
}
//顯示出資料
for( i = 0 ; i < i_max ; i++ ){
System.out.print("第"+(i+1)+"間直營店銷售總成本="+(cost[i]+cost1[i])+"\n");
System.out.print("銷售總營業額="+sum[i]+"\n");
ratio = data[i];
System.out.printf("銷售銷售毛利=%.2f",ratio);
System.out.print("%\n");
System.out.println();
}
}
}
/* TQC+ JAVA6 - 607_5 */
public class JPA06_5 {
public static void main(String[] arge){
int[][] salary = {
{ 120 , 420 , 315 , 250 , 418,818,900 },
{ 312 , 183 , 215 , 89 , 83,600,700 },
{ 215 , 500 , 430 , 210 , 300,918,880 }
};
int cost,sum=0;
double ratio;
cost=1500+1515+1858+180+200+360;
//利用兩層的for loop計算出總營業額
for(int b=0;b<salary.length;b++){
for(int a=0;a<salary[b].length;a++){
sum+=salary[b][a];
}
}
//計算出毛利率
ratio=(double)(sum-cost)/cost*100;
System.out.print("總銷售總成本="+cost);
System.out.println();
System.out.print("總銷售總營業額="+sum);
System.out.println();
System.out.printf("總銷售銷售毛利率=%.2f",ratio);
System.out.print("%");
System.out.println();
}
}


TQC+ JAVA6 試題總覽:LINK
Github 備份:LINK

本篇教學的程式碼皆由筆者編輯,歡迎轉貼本教學,但請全文轉貼,謝啦~

TQC+ JAVA 606 薪資計算

TQC+ JAVA6 試題總覽:LINK
Github 備份:LINK

/* TQC+ JAVA6 - 606_1 */
//建立一個抽象屬性
abstract class teacher{
String name;
double rate;
double totalHours;
double salary;
//建構子初始化名字、時薪、總時數
teacher(String s, double d,double ds){
name =s;
rate = d;
totalHours =ds;
}
abstract double salary();
}
//建立兼任老師類別
class PartTimeTeacher extends teacher{
PartTimeTeacher(String s,double d,double ds){
super(s,d,ds);
}
//實作薪水方法
public double salary(){
return totalHours * rate;
}
}
//建立專任老師類別
class FullTimeTeacher extends teacher{
FullTimeTeacher(String s,double d,double ds){
super(s,d,ds);
}
//實作薪水方法
public double salary(){
return 9*rate+((totalHours-9) * rate*0.8);
}
}
public class JPA06_1 {
public static void main(String argv[]) {
//建立兼任、專任老師的物件
PartTimeTeacher p1 = new PartTimeTeacher("John",400,2);
PartTimeTeacher p2 = new PartTimeTeacher("Mary",300,4);
FullTimeTeacher f1 = new FullTimeTeacher("Peter",400,9);
FullTimeTeacher f2 = new FullTimeTeacher("Paul",300,12);
FullTimeTeacher f3 = new FullTimeTeacher("Eric",350,15);
//透過方法得到薪水值
System.out.println("John-PartTime : " + p1.salary());
System.out.println("Mary-PartTime : " + p2.salary());
System.out.println("Peter-FulLTime : " + f1.salary());
System.out.println("Paul-FulLTime : " + f2.salary());
System.out.println("Eric-FulLTime : " + f3.salary());
}
}
/* TQC+ JAVA6 - 606_2 */
abstract class teacher{
String name;
double rate;
double totalHours;
double salary;
teacher(String s, double d,double ds){
name =s;
rate = d;
totalHours =ds;
}
abstract double salary();
//增加一個扣稅後的薪資總額方法
double afterTaxIns(){
return salary()-salary()*0.1-100;//扣100元為健保費
}
}
class PartTimeTeacher extends teacher{
PartTimeTeacher(String s,double d,double ds){
super(s,d,ds);
}
public double salary(){
return totalHours * rate;
}
}
class FullTimeTeacher extends teacher{
FullTimeTeacher(String s,double d,double ds){
super(s,d,ds);
}
public double salary(){
return 9*rate+((totalHours-9) * rate*0.8);
}
}
//新增行政主管,繼承專任教師
class Manager extends FullTimeTeacher{
int rank;
//建構子,初始化名字、時薪、總時數、階級
Manager(String s,double d,double ds,int i){
super(s,d,ds);
rank=i;
}
//實作薪資方法(複寫FullTimeTeacher.salary())
public double salary(){
return super.salary()+rank*500;
}
double getTotalSalary(){
return salary();
}
}
public class JPA06_2 {
public static void main(String argv[]) {
PartTimeTeacher p1 = new PartTimeTeacher("John",400,2);
PartTimeTeacher p2 = new PartTimeTeacher("Mary",300,4);
FullTimeTeacher f1 = new FullTimeTeacher("Peter",400,9);
FullTimeTeacher f2 = new FullTimeTeacher("Paul",300,12);
FullTimeTeacher f3 = new FullTimeTeacher("Eric",350,15);
System.out.println("John-afterTaxIns:" + p1.afterTaxIns());
System.out.println("Mary-afterTaxIns:" + p2.afterTaxIns());
System.out.println("Peter-afterTaxIns:" + f1.afterTaxIns());
System.out.println("Paul-afterTaxIns:" + f2.afterTaxIns());
System.out.println("Eric-afterTaxIns:" + f3.afterTaxIns());
//建立行政主管物件
Manager am1 = new Manager("Fang", 500, 12, 3);
System.out.println("Fang-Manager:" + am1.getTotalSalary());
System.out.println("Fang-afterTaxIns:" + am1.afterTaxIns());
}
}
/* TQC+ JAVA6 - 606_3 */
abstract class teacher{
String name;
double rate;
double totalHours;
double salary;
teacher(String s, double d,double ds){
name =s;
rate = d;
totalHours =ds;
}
abstract double salary();
double afterTaxIns(){
return salary()-salary()*0.1-100;
}
//建立一個比較薪水高低的方法
void compare(teacher tt){
//使用tt.name指外部傳進來比較的名字
if(tt.salary()>salary())
System.out.printf("%s is higher than %s\n", tt.name,name);
else
System.out.printf("%s is higher than %s\n", name,tt.name);
}
}
class PartTimeTeacher extends teacher{
PartTimeTeacher(String s,double d,double ds){
super(s,d,ds);
}
public double salary(){
return totalHours * rate;
}
}
class FullTimeTeacher extends teacher{
FullTimeTeacher(String s,double d,double ds){
super(s,d,ds);
}
public double salary(){
return 9*rate+((totalHours-9) * rate*0.8);
}
}
class Manager extends FullTimeTeacher{
int rank;
Manager(String s,double d,double ds,int i){
super(s,d,ds);rank=i;
}
public double salary(){
return super.salary()+rank*500;
}
double getTotalSalary(){
return afterTaxIns();
}
}
public class JPA06_3 {
public static void main(String argv[]) {
PartTimeTeacher p1 = new PartTimeTeacher("John",400,2);
PartTimeTeacher p2 = new PartTimeTeacher("Mary",300,4);
FullTimeTeacher f1 = new FullTimeTeacher("Peter",400,9);
FullTimeTeacher f2 = new FullTimeTeacher("Paul",300,12);
FullTimeTeacher f3 = new FullTimeTeacher("Eric",350,15);
Manager am1 = new Manager("Fang", 500, 12, 3);
//(物件)am1與(物件)f3誰的薪水高
am1.compare(f3);
p1.compare(f3);
}
}
/* TQC+ JAVA6 - 606_4 */
import java.util.HashMap;
import java.util.Iterator;
abstract class teacher{
String name;
double rate;
double totalHours;
double salary;
teacher(String s, double d,double ds){
name =s;
rate = d;
totalHours =ds;
}
abstract double salary();
double afterTaxIns(){
return salary()-salary()*0.1-100;
}
void compare(teacher tt){
if(tt.salary()>salary())
System.out.printf("%s is higher than %s\n", tt.name,name);
else
System.out.printf("%s is higher than %s\n", name,tt.name);
}
}
class PartTimeTeacher extends teacher{
PartTimeTeacher(String s,double d,double ds){
super(s,d,ds);
}
public double salary(){
return totalHours * rate;
}
}
class FullTimeTeacher extends teacher{
FullTimeTeacher(String s,double d,double ds){
super(s,d,ds);
}
public double salary(){
return 9*rate+((totalHours-9) * rate*0.8);
}
}
class Manager extends FullTimeTeacher{
int rank;
Manager(String s,double d,double ds,int i){
super(s,d,ds);
rank=i;
}
public double salary(){
return super.salary()+rank*500;
}
double getTotalSalary(){
return afterTaxIns();
}
}
//建立老師資料庫的類別
class TeacherDB{
HashMap tea;
//建構子初始化為HashMap物件
TeacherDB(){
tea = new HashMap();
}
//建立一個儲存資料的方法
void store(String s ,teacher t){
tea.put(s, t);
}
//建立一個方法取得所有老師加總薪水
double totalOfAll(){
double d=0;
for(Iterator iterator = tea.values().iterator();iterator.hasNext();){
teacher tt = (teacher)iterator.next();
d = d+tt.afterTaxIns();
}
return d;
}
}
public class JPA06_4 {
public static void main(String argv[]) {
PartTimeTeacher p1 = new PartTimeTeacher("John",400,2);
PartTimeTeacher p2 = new PartTimeTeacher("Mary",300,4);
FullTimeTeacher f1 = new FullTimeTeacher("Peter",400,9);
FullTimeTeacher f2 = new FullTimeTeacher("Paul",300,12);
FullTimeTeacher f3 = new FullTimeTeacher("Eric",350,15);
Manager am1 = new Manager("Fang", 500, 12, 3);
//建立一個老師資料庫的物件,並且逐一存入HashMap中
TeacherDB school = new TeacherDB();
school.store("John", p1);
school.store("Mary", p2);
school.store("Peter", f1);
school.store("Paul", f2);
school.store("Eric", f3);
school.store("Fang", am1);
System.out.println("Total salary: " + school.totalOfAll());
}
}
/* TQC+ JAVA6 - 606_5 */
import java.util.HashMap;
import java.util.Iterator;
abstract class teacher{
String name;
double rate;
double totalHours;
double salary;
teacher(String s, double d,double ds){
name =s;
rate = d;
totalHours =ds;
}
abstract double salary();
double afterTaxIns(){
return salary()-salary()*0.1-100;
}
void compare(teacher tt){
if(tt.salary()>salary())
System.out.printf("%s is higher than %s\n", tt.name,name);
else
System.out.printf("%s is higher than %s\n", name,tt.name);
}
}
class PartTimeTeacher extends teacher{
PartTimeTeacher(String s,double d,double ds){
super(s,d,ds);
}
public double salary(){
return totalHours * rate;
}
}
class FullTimeTeacher extends teacher{
FullTimeTeacher(String s,double d,double ds){
super(s,d,ds);
}
public double salary(){
return 9*rate+((totalHours-9) * rate*0.8);
}
}
class Manager extends FullTimeTeacher{
int rank;
Manager(String s,double d,double ds,int i){
super(s,d,ds);
rank=i;
}
public double salary(){
return super.salary()+rank*500;
}
double getTotalSalary(){
return afterTaxIns();
}
}
class TeacherDB{
HashMap tea;
TeacherDB(){
tea = new HashMap();
}
void printAllTeacher(){
for(Iterator iterator = tea.values().iterator();iterator.hasNext();){
try{
teacher tt = (teacher)iterator.next();
//建立判斷方法,當小於1500元,則丟出錯誤訊息
if(tt.salary()<1500)
throw new lessecpt(tt.name,tt.salary());
else
System.out.println(tt.name+" "+tt.salary());
}catch(lessecpt e) {
//System.out.println(e.getMessage());
}
}
}
void store(String s ,teacher t){
tea.put(s, t);
}
double totalOfAll(){
double d=0;
for(Iterator iterator = tea.values().iterator();iterator.hasNext();){
teacher tt = (teacher)iterator.next();
d = d+tt.afterTaxIns();
}
return d;
}
//建立Exception的類別
class lessecpt extends Exception{
//建構子初始化姓名和薪資
lessecpt(String s,double d){
System.out.println("**"+s+" "+d);
}
}
}
public class JPA06_5 {
public static void main(String argv[]) {
PartTimeTeacher p1 = new PartTimeTeacher("John",400,2);
PartTimeTeacher p2 = new PartTimeTeacher("Mary",300,4);
FullTimeTeacher f1 = new FullTimeTeacher("Peter",400,9);
FullTimeTeacher f2 = new FullTimeTeacher("Paul",300,12);
FullTimeTeacher f3 = new FullTimeTeacher("Eric",350,15);
TeacherDB school = new TeacherDB();
school.store("John", p1);
school.store("Mary", p2);
school.store("Peter", f1);
school.store("Paul", f2);
school.store("Eric", f3);
school.printAllTeacher();
}
}


TQC+ JAVA6 試題總覽:LINK
Github 備份:LINK

本篇教學的程式碼皆由筆者編輯,歡迎轉貼本教學,但請全文轉貼,謝啦~

TQC+ JAVA 605 成績資訊系統

TQC+ JAVA6 試題總覽:LINK
Github 備份:LINK

/* TQC+ JAVA6 - 605_1 */
//建立一個抽象屬性的方法
abstract class MIS{
private String name;
private int chi;
private int eng;
//建立建構子,初始化姓名、國文成績、英文成績
public MIS(String s,int i,int j)
{name = s;chi = i;eng = j;}
//建立抽象方法,須在繼承的class中實作
public abstract double averageElect();
//建立平均計算方法
public double averageAll()
{return averageElect()*0.6 + (double)((chi+eng)/2.0)*0.4;}
}
//繼承MIS
class IT extends MIS {
private int pl;
private int db;
private int ds;
//建構子初始化必修成績和選修成績
IT(String s,int i,int j,int k,int l,int ii)
{
super(s,i,j);
pl=k;
db=l;
ds=ii;
}
public double averageElect(){return (pl+db+ds)/3.0;}
}
//繼承MIS
class IM extends MIS{
private int econ;
private int acct;
//建構子初始化必修成績和選修成績
IM(String s,int i,int j,int k ,int l)
{
super(s,i,j);
econ = k;
acct =l;
}
public double averageElect(){return (econ+acct)/2.0;}
}
public class JPA06_1 {
public static void main(String argv[]) {
//建立MIS物件IT和IM
MIS s1 = new IT("John", 88, 90, 76, 68, 84);
MIS s2 = new IM("Paul", 92, 80, 76, 68);
System.out.printf("John's elect score: %.2f all score %.2f\n", s1.averageElect(), s1.averageAll());
System.out.printf("Paul's elect score: %.2f all score %.2f\n", s2.averageElect(), s2.averageAll());
}
}
/* TQC+ JAVA6 - 605_2 */
abstract class MIS{
private String name;
private int chi;
private int eng;
public MIS(String s,int i,int j)
{name = s;chi = i;eng = j;}
public abstract double averageElect();
//更改主科成績取得方法
public double averageMust(){return (double)((chi+eng)/2.0);}
public double averageAll()
{return averageElect()*0.6 + averageMust()*0.4;}
}
class IT extends MIS {
private int pl;
private int db;
private int ds;
IT(String s,int i,int j,int k,int l,int ii)
{
super(s,i,j);
pl=k;
db=l;
ds=ii;
}
public double averageElect(){return (pl+db+ds)/3.0;}
}
class IM extends MIS{
private int econ;
private int acct;
IM(String s,int i,int j,int k ,int l)
{
super(s,i,j);
econ = k;
acct =l;
}
public double averageElect(){return (econ+acct)/2.0;}
}
//再繼承自IT
class ITM extends IT{
private int acct;
//建構子初始化成績
ITM(String s,int i,int j,int k,int l,int ii,int jj)
{
super(s,i,j,k,l,ii);
acct=jj;
}
//實作MIS的方法,複寫IT的方法
public double averageElect(){return (super.averageElect()+acct)/2.0;}
public double averageAll() {return (super.averageMust()*0.4 + super.averageElect()*0.4 + acct*0.2);}
}
public class JPA06_2 {
public static void main(String argv[]) {
//建立MIS物件ITM
MIS s3 = new ITM("Mary", 79, 88, 94, 92, 83, 69);
System.out.printf("Mary's elect score: %.2f all score %.2f\n", s3.averageElect(), s3.averageAll());
}
}
/* TQC+ JAVA6 - 605_3 */
abstract class MIS{
private String name;
private int chi;
private int eng;
//初始化人數為0
private static int count =0;
//每建立一次MIS物件時會使count++
public MIS(String s,int i,int j){
name = s;
chi = i;
eng = j;
count++;
}
public abstract double averageElect();
public double averageMust(){
return (double)((chi+eng)/2.0);
}
public double averageAll(){
return averageElect()*0.6 + averageMust()*0.4;
}
//設定取得count方法
public static int getCount(){
return count;
}
}
class IT extends MIS {
private int pl;
private int db;
private int ds;
IT(String s,int i,int j,int k,int l,int ii){
super(s,i,j);
pl=k;
db=l;
ds=ii;
}
public double averageElect(){
return (pl+db+ds)/3.0;
}
}
class IM extends MIS{
private int econ;
private int acct;
IM(String s,int i,int j,int k ,int l){
super(s,i,j);
econ = k;
acct =l;
}
public double averageElect(){
return (econ+acct)/2.0;
}
}
class ITM extends IT{
private int acct;
ITM(String s,int i,int j,int k,int l,int ii,int jj){
super(s,i,j,k,l,ii);
acct=jj;
}
public double averageElect(){
return (super.averageElect()+acct)/2.0;
}
public double averageAll() {
return (super.averageMust()*0.4 + super.averageElect()*0.4 + acct*0.2);
}
}
public class JPA06_3 {
public static void main(String argv[]) {
MIS s1 = new IT("John", 88, 90, 76, 68, 84);
MIS s2 = new IM("Paul", 92, 80, 76, 68);
MIS s3 = new ITM("Mary", 79, 88, 94, 92, 83, 69);
//System.out.printf("John's elect score: %.2f all score %.2f\n", s1.averageElect(), s1.averageAll());
//System.out.printf("Paul's elect score: %.2f all score %.2f\n", s2.averageElect(), s2.averageAll());
//System.out.printf("Mary's elect score: %.2f all score %.2f\n", s3.averageElect(), s3.averageAll());
System.out.println("Total students: " + MIS.getCount());
}
}
/* TQC+ JAVA6 - 605_4 */
import java.util.HashMap;
import java.util.Iterator;
import java.util.Map;
abstract class MIS{
private String name;
private int chi;
private int eng;
private static int count =0;
public MIS(String s,int i,int j){
name = s;
chi = i;
eng = j;
count++;
}
public abstract double averageElect();
public double averageMust(){
return (double)((chi+eng)/2.0);
}
public double averageAll(){
return averageElect()*0.6 + averageMust()*0.4;
}
public static int getCount(){
return count;
}
}
class IT extends MIS {
private int pl;
private int db;
private int ds;
IT(String s,int i,int j,int k,int l,int ii){
super(s,i,j);
pl=k;
db=l;
ds=ii;
}
public double averageElect(){
return (pl+db+ds)/3.0;
}
}
class IM extends MIS{
private int econ;
private int acct;
IM(String s,int i,int j,int k ,int l){
super(s,i,j);
econ = k;
acct =l;
}
public double averageElect(){
return (econ+acct)/2.0;
}
}
class ITM extends IT{
private int acct;
ITM(String s,int i,int j,int k,int l,int ii,int jj){
super(s,i,j,k,l,ii);
acct=jj;
}
public double averageElect(){
return (super.averageElect()+acct)/2.0;
}
public double averageAll(){
return (super.averageMust()*0.4 + super.averageElect()*0.4 + acct*0.2);
}
}
//建立MISClass方法
class MISClass {
private HashMap stu;
//建構子初始化為HashMap
MISClass(){
stu = new HashMap();
}
//建立方法,將學生的key,value放到HashMap
public void put(String s,MIS mis){
stu.put(s, mis);
}
public void list(){
//取出Map值用
Map.Entry entry = null;
MIS mis = null;
//透過Iterator將整份的Map(key,value)放入
for(Iterator iterator = stu.entrySet().iterator();iterator.hasNext();){
//判斷是否還有下一個
entry = (Map.Entry)iterator.next();
//取出MIS物件
mis = (MIS)entry.getValue();
System.out.printf("%s : %.2f \n",entry.getKey(),mis.averageAll());
}
}
}
public class JPA06_4 {
public static void main(String argv[]) {
//建立MIS物件IT、IM、ITM
MIS s1 = new IT("John", 88, 90, 76, 68, 84);
MIS s2 = new IM("Paul", 92, 80, 76, 68);
MIS s3 = new ITM("Mary", 79, 88, 94, 92, 83, 69);
//System.out.printf("John's elect score: %.2f all score %.2f\n", s1.averageElect(), s1.averageAll());
//System.out.printf("Paul's elect score: %.2f all score %.2f\n", s2.averageElect(), s2.averageAll());
//System.out.printf("Mary's elect score: %.2f all score %.2f\n", s3.averageElect(), s3.averageAll());
//建立MISClass物件
MISClass c1 = new MISClass();
//將產生好的物件放入Map中,key=名字,value=MIS物件
c1.put("John", s1);
c1.put("Paul", s2);
c1.put("Mary", s3);
c1.list();
}
}
/* TQC+ JAVA6 - 605_5 */
import java.util.HashMap;
import java.util.Iterator;
import java.util.Map;
abstract class MIS{
private String name;
private int chi;
private int eng;
private static int count =0;
public MIS(String s,int i,int j){
name = s;
chi = i;
eng = j;
count++;
}
public abstract double averageElect();
public double averageMust(){
return (double)((chi+eng)/2.0);
}
public double averageAll(){
return averageElect()*0.6 + averageMust()*0.4;
}
public static int getCount(){
return count;
}
}
class IT extends MIS {
private int pl;
private int db;
private int ds;
IT(String s,int i,int j,int k,int l,int ii){
super(s,i,j);
pl=k;
db=l;
ds=ii;
}
public double averageElect(){
return (pl+db+ds)/3.0;
}
}
class IM extends MIS{
private int econ;
private int acct;
IM(String s,int i,int j,int k ,int l){
super(s,i,j);
econ = k;
acct =l;
}
public double averageElect(){
return (econ+acct)/2.0;
}
}
class ITM extends IT{
private int acct;
ITM(String s,int i,int j,int k,int l,int ii,int jj){
super(s,i,j,k,l,ii);
acct=jj;
}
public double averageElect(){
return (super.averageElect()+acct)/2.0;
}
public double averageAll(){
return (super.averageMust()*0.4 + super.averageElect()*0.4 + acct*0.2);
}
}
class MISClass {
private HashMap stu;
MISClass(){
stu = new HashMap();
}
public void put(String s,MIS mis){
stu.put(s, mis);
}
public void list() throws Exception{
Map.Entry entry = null;
MIS mis = null;
for(Iterator iterator = stu.entrySet().iterator();iterator.hasNext();
System.out.printf("%s : %.2f \n",entry.getKey(),mis.averageAll())){
entry = (Map.Entry)iterator.next();
mis = (MIS)entry.getValue();
//新增一個判斷方法
if(mis.averageAll() >100)//如果平均大於100分,則丟出錯誤訊息
throw new Exception("**"+entry.getKey()+":"+mis.averageAll());
}
}
}
public class JPA06_5 {
public static void main(String argv[]) {
MISClass c1 = new MISClass();
c1.put("Peter", new IM("Peter", 89, 980, 77, 69));
//將try-catch加入,主要是在列印出成績時,檢查是否有錯誤
try{
c1.list();
} catch(Exception e) {
System.out.println(e.getMessage());
}
}
}


TQC+ JAVA6 試題總覽:LINK
Github 備份:LINK

本篇教學的程式碼皆由筆者編輯,歡迎轉貼本教學,但請全文轉貼,謝啦~

TQC+ JAVA 604 銀行理財帳戶

TQC+ JAVA6 試題總覽:LINK
Github 備份:LINK

/* TQC+ JAVA6 - 604_1 */
class Account{
String name;//開戶人
double rate;//年利率
int balance;//帳戶餘額
//建構子,設定名字和利率
Account(String s,double d){
name = s;
rate = d;
}
//設定利率
void setRate(double d){
rate = d;
}
//存款
void deposit(int i){
balance+=i;
}
//提款
void withdraw(int i){
balance-=i;
}
//餘額查詢
int balance(){
return balance;
}
//加計利息,將利息利率整體+1
void addInterest(){
balance*=rate+1;
}
}
//定期存款戶方法,繼承Account的所有成員及方法
class DepositAccount extends Account{
DepositAccount(String s,int i){
super(s,0.0);//使用父親的建構子,初始化姓名和年利率
double d =0.0;
switch(i){
case 1:
d=0.03;
break;
case 2:
d=0.04;
break;
case 3:
d=0.05;
break;
}
setRate(d);//設定年利率
}
}
//活期存款戶方法,繼承Account的所有成員及方法
class FreeAccount extends Account{
FreeAccount(String s){
super(s,0.02);/*使用父親的建構子,初始化姓名和年利率*/}
}
//優惠存款戶方法,繼承Account的所有成員及方法
class SpecialAccount extends Account{
SpecialAccount(String s){
super(s,0.02);
}
//判斷買基金是否免手續費方法,大於10000則回傳true
boolean isEmpt(){
return balance>10000;
}
}
//基金存款戶方法,繼承Account的所有成員及方法
class FundAccount extends Account{
String fundName;//基金名稱
FreeAccount freeAccount;//活期存款戶
SpecialAccount specialaccount;//優惠存款戶
double unit;//購買基金單位(基金儲存方式是以股為單位,而不是以金額,單位金額隨時都有可能漲跌)
//建構子,初始化參數,從外部傳入"開戶人"、"基金名稱"、"活期存款戶物件"、"優惠存款戶物件",四個參數
FundAccount(String s,String s1,FreeAccount f,SpecialAccount sa){
super(s,0.0);
fundName = s1;
freeAccount = f;
specialaccount =sa;
}
//購買基金方法
void buy(int i,int j){//i購買金額,j單位金額
//利用優惠存款檢查是否餘額大於10000再給予優惠
if(specialaccount.isEmpt())
//直接提款
freeAccount.withdraw(i);
else
//多提出手續費2%扣除
freeAccount.withdraw((int)(i*1.02));
//購買單位=購買金額/每單位金額
unit+=(double)i/(double)j;
}
void sell(double d,int i){//d基金單位,每單位金額
//利用優惠存款檢查是否餘額大於10000再給予優惠
if(specialaccount.isEmpt())
//直接存款
freeAccount.deposit((int)(d*i));
else
//扣除手續費2%在進行存款
freeAccount.deposit((int)(d*i*0.98));
unit-=d;
}
//將單位基金金額傳入,乘上持有單位數,回傳總基金現額
int balance(int i){
return (int)(unit*i);
}
//取得持有多少單位基金
double getUnit(){
return unit;
}
}
class JPA06_1 {
public static void main(String args[]) {
//為Peter開個定期帳戶,兩年期的
DepositAccount deposit = new DepositAccount("peter", 2);
//存款5000元
deposit.deposit(5000);
//為Peter開個活期帳戶
FreeAccount free = new FreeAccount("peter");
//存款20000
free.deposit(20000);
//為Peter開個優惠帳戶
SpecialAccount special = new SpecialAccount("peter");
//存款10000
special.deposit(10000);
//利用加計利息增加帳戶餘額
deposit.addInterest();
free.addInterest();
special.addInterest();
//顯示個帳戶的餘額
System.out.println("定期存款:" + deposit.balance());
System.out.println("活期存款:" + free.balance());
System.out.println("優惠存款:" + special.balance());
//為Peter建立一個基金帳戶,名稱為"A"
FundAccount fund = new FundAccount("peter", "A", free, special);
//購入15000元的基金,且每單位為500元
fund.buy(15000, 500);
System.out.println("基金現額:" + fund.balance(300));
System.out.println("活期餘額:" + fund.freeAccount.balance());
}
}
/* TQC+ JAVA6 - 604_2 */
class Account{
String name;
double rate;
int balance;
Account(String s,double d){
name = s;
rate = d;
}
void setRate(double d){
rate = d;
}
void deposit(int i){
balance+=i;
}
void withdraw(int i){
balance-=i;
}
int balance(){
return balance;
}
void addInterest(){
balance*=rate+1;
}
}
class DepositAccount extends Account{
DepositAccount(String s,int i){
super(s,0.0);
double d =0.0;
switch(i){
case 1:
d=0.03;
break;
case 2:
d=0.04;
break;
case 3:
d=0.05;
break;
}
super.setRate(d);
}
}
class FreeAccount extends Account{
FreeAccount(String s){
super(s,0.02);
}
}
class SpecialAccount extends Account{
SpecialAccount(String s){
super(s,0.02);
}
boolean isEmpt(){
return balance>10000;
}
}
class FundAccount extends Account{
String fundName;
FreeAccount freeAccount;
SpecialAccount specialaccount;
double unit;
FundAccount(String s,String s1,FreeAccount f,SpecialAccount sa){
super(s,0.0);
fundName = s1;
freeAccount = f;
specialaccount =sa;
}
void buy(int i,int j){
if(specialaccount.isEmpt())
freeAccount.withdraw(i);
else
freeAccount.withdraw((int)(i*1.02));
unit+=(double)i/(double)j;
}
void sell(double d,int i){
if(specialaccount.isEmpt())
freeAccount.deposit((int)(d*i));
else
freeAccount.deposit((int)(d*i*0.98));
unit-=d;
}
int balance(int i){
return (int)(unit*i);
}
double getUnit(){
return unit;
}
}
class JPA06_2 {
public static void main(String args[]) {
DepositAccount deposit = new DepositAccount("peter", 2);
deposit.deposit(5000);
FreeAccount free = new FreeAccount("peter");
free.deposit(20000);
SpecialAccount special = new SpecialAccount("peter");
special.deposit(10000);
deposit.addInterest();
free.addInterest();
special.addInterest();
FundAccount fund = new FundAccount("peter", "A", free, special);
fund.buy(15000, 500);
//從優惠帳戶中提款5000元
special.withdraw(5000);
//再買入2000元的基金,以每單位300元購入
fund.buy(2000, 300);
System.out.println("基金餘額:" + fund.balance(300));
System.out.println("售出前活期餘額:" + fund.freeAccount.balance());
//賣出全部的股,以每單位400元賣出
fund.sell(fund.getUnit(), 400);
//這邊的fund.freeAccount.balance(),是透過fund裡面的freeAccount的balance來取出餘額的,因為fund本身的balance沒有儲存金額進去
System.out.println("售出後活期餘額:" + fund.freeAccount.balance());
}
}
/* TQC+ JAVA6 - 604_3 */
class Account{
String name;
double rate;
int balance;
Account(String s,double d){
name = s;
rate = d;
}
void setRate(double d){
rate = d;
}
void deposit(int i){
balance+=i;
}
void withdraw(int i){
balance-=i;
}
int balance(){
return balance;
}
void addInterest(){
balance*=rate+1;
}
}
class DepositAccount extends Account{
DepositAccount(String s,int i){
super(s,0.0);
double d =0.0;
switch(i){
case 1:
d=0.03;break;
case 2:
d=0.04;break;
case 3:
d=0.05;break;
}
super.setRate(d);
}
}
class FreeAccount extends Account{
FreeAccount(String s){
super(s,0.02);
}
}
class SpecialAccount extends Account{
SpecialAccount(String s){
super(s,0.02);
}
boolean isEmpt(){
return balance>10000;
}
}
class FundAccount extends Account{
String fundName;
FreeAccount freeAccount;
SpecialAccount specialaccount;
double unit;
FundAccount(String s,String s1,FreeAccount f,SpecialAccount sa){
super(s,0.0);
fundName = s1;
freeAccount = f;
specialaccount =sa;
}
void buy(int i,int j){
if(specialaccount.isEmpt())
freeAccount.withdraw(i);
else
freeAccount.withdraw((int)(i*1.02));
unit+=(double)i/(double)j;
}
void sell(double d,int i){
if(specialaccount.isEmpt())
freeAccount.deposit((int)(d*i));
else
freeAccount.deposit((int)(d*i*0.98));
unit-=d;
}
int balance(int i){
return (int)(unit*i);
}
double getUnit(){
return unit;
}
}
//建立網路帳戶方法
class InternetAccount{
DepositAccount deposit;
FreeAccount free;
SpecialAccount specisl;
FundAccount fund;
InternetAccount(){}
//從外部傳入定期存款戶物件
void setDeposit(DepositAccount d){
deposit = d;
}
//從外部傳入活期存款戶物件
void setFree(FreeAccount f){
free=f;
}
//從外部傳入優惠存款戶物件
void setSpecial(SpecialAccount s){
specisl=s;
}
void setFund(FundAccount ff){
fund=ff;
}
int getTotalBalance(){
return deposit.balance+free.balance+specisl.balance;
}
}
class JPA06_3 {
public static void main(String args[]) {
DepositAccount deposit = new DepositAccount("peter", 2);
deposit.deposit(5000);
FreeAccount free = new FreeAccount("peter");
free.deposit(20000);
SpecialAccount special = new SpecialAccount("peter");
special.deposit(10000);
deposit.addInterest();
free.addInterest();
special.addInterest();
FundAccount fund = new FundAccount("peter", "A", free, special);
fund.buy(15000, 500);
special.withdraw(5000);
fund.buy(2000, 300);
fund.sell(fund.getUnit(), 400);
//產生一個網路銀行的物件
InternetAccount internet = new InternetAccount();
//設定定期帳戶
internet.setDeposit(deposit);
//設定活期帳戶
internet.setFree(free);
//設定優惠帳戶
internet.setSpecial(special);
//設定基金帳戶
internet.setFund(fund);
System.out.println("存款總額:" + internet.getTotalBalance());
}
}
/* TQC+ JAVA6 - 604_4 */
import java.util.HashMap;
import java.util.Iterator;
class Account{
String name;
double rate;
int balance;
Account(String s,double d){
name = s;
rate = d;
}
void setRate(double d){
rate = d;
}
void deposit(int i){
balance+=i;
}
void withdraw(int i){
balance-=i;
}
int balance(){
return balance;
}
void addInterest(){
balance*=rate+1;
}
}
class DepositAccount extends Account{
DepositAccount(String s,int i){
super(s,0.0);
double d =0.0;
switch(i){
case 1:
d=0.03;break;
case 2:
d=0.04;break;
case 3:
d=0.05;break;
}
super.setRate(d);
}
}
class FreeAccount extends Account{
FreeAccount(String s){
super(s,0.02);
}
}
class SpecialAccount extends Account{
SpecialAccount(String s){
super(s,0.02);
}
boolean isEmpt(){
return balance>10000;
}
}
class FundAccount extends Account{
String fundName;
FreeAccount freeAccount;
SpecialAccount specialaccount;
double unit;
FundAccount(String s,String s1,FreeAccount f,SpecialAccount sa){
super(s,0.0);
fundName = s1;
freeAccount = f;
specialaccount =sa;
}
void buy(int i,int j){
if(specialaccount.isEmpt())
freeAccount.withdraw(i);
else
freeAccount.withdraw((int)(i*1.02));
unit+=(double)i/(double)j;
}
void sell(double d,int i){
if(specialaccount.isEmpt())
freeAccount.deposit((int)(d*i));
else
freeAccount.deposit((int)(d*i*0.98));
unit-=d;
}
int balance(int i){
return (int)(unit*i);
}
double getUnit(){
return unit;
}
}
class InternetAccount{
DepositAccount deposit;
FreeAccount free;
SpecialAccount specisl;
FundAccount fund;
InternetAccount(){}
void setDeposit(DepositAccount d){
deposit = d;
}
void setFree(FreeAccount f){
free=f;
}
void setSpecial(SpecialAccount s){
specisl=s;
}
void setFund(FundAccount ff){
fund=ff;
}
int getTotalBalance(){
return deposit.balance+free.balance+specisl.balance;
}
}
//建立一個多基金的方法
class MultiFund{
HashMap funds;
//初始化建構子,使其產生一個HashMap
MultiFund(){funds = new HashMap();}
//增加新的基金方法
void addFund(String s, FundAccount fundaccount){
funds.put(s, fundaccount);
}
//列印出所有基金和擁有單位數
void printEachUnit(){
FundAccount fundaccount ;
for(Iterator iterator = funds.values().iterator();iterator.hasNext();){
fundaccount = (FundAccount)iterator.next();
System.out.println(fundaccount.fundName+" : "+fundaccount.getUnit());
}
}
//建立一個方法,傳入基金名稱、傳入單位金額
int getFundBalance(String s ,int i){
return ((FundAccount)funds.get(s)).balance(i);
}
}
class JPA06_4 {
public static void main(String args[]) {
DepositAccount deposit = new DepositAccount("peter", 2);
deposit.deposit(5000);
FreeAccount free = new FreeAccount("peter");
free.deposit(20000);
SpecialAccount special = new SpecialAccount("peter");
special.deposit(10000);
deposit.addInterest();
free.addInterest();
special.addInterest();
FundAccount fund = new FundAccount("peter", "A", free, special);
fund.buy(15000, 500);
special.withdraw(5000);
fund.buy(2000, 300);
fund.sell(fund.getUnit(), 400);
InternetAccount internet = new InternetAccount();
internet.setDeposit(deposit);
internet.setFree(free);
internet.setSpecial(special);
internet.setFund(fund);
//建立一個多帳戶的物件
MultiFund multi = new MultiFund();
//增加A基金(因A基金本身就存在,不需再另外建立)
multi.addFund("A", fund);
//建立一個B基金
FundAccount fundB = new FundAccount("peter", "B", free, special);
//購買每單位50元的基金,2000元
fundB.buy(2000, 50);
//增加B基金
multi.addFund("B", fundB);
//建立一個C基金
FundAccount fundC = new FundAccount("peter", "C", free, special);
//購買每單位30元的基金,5000元
fundC.buy(5000, 30);
multi.addFund("C", fundC);
System.out.println("活期餘額:" + free.balance());
//顯示特定基金的總現值,須傳入基金名稱和單位金額
multi.printEachUnit();
System.out.println("B 基金餘額: " + multi.getFundBalance("B", 100));
}
}
/* TQC+ JAVA6 - 604_5 */
import java.util.HashMap;
import java.util.Iterator;
class Account{
String name;
double rate;
int balance;
Account(String s,double d){
name = s;
rate = d;
}
void setRate(double d){
rate = d;
}
void deposit(int i){
balance+=i;
}
void withdraw(int i) throws Exception {
//設定當提款金額大於存款金額時,丟出錯誤訊息
if(balance<i){
throw new Exception(name+"提款金額: "+i+" 大於存款金額: "+balance);
} else {
balance-=i;
return;
}
}
int balance(){
return balance;
}
void addInterest(){
balance*=rate+1;
}
}
class DepositAccount extends Account{
DepositAccount(String s,int i){
super(s,0.0);
double d =0.0;
switch(i){
case 1:
d=0.03;
break;
case 2:
d=0.04;
break;
case 3:
d=0.05;
break;
}
super.setRate(d);
}
}
class FreeAccount extends Account{
FreeAccount(String s){
super(s,0.02);
}
}
class SpecialAccount extends Account{
SpecialAccount(String s){
super(s,0.02);
}
boolean isEmpt(){
return balance>10000;
}
}
class FundAccount extends Account{
String fundName;
FreeAccount freeAccount;
SpecialAccount specialaccount;
double unit;
FundAccount(String s,String s1,FreeAccount f,SpecialAccount sa){
super(s,0.0);
fundName = s1;
freeAccount = f;
specialaccount =sa;
}
void buy(int i,int j){
//此處也有使用到提款功能,也須將try catch崁入
try{
if(specialaccount.isEmpt())
freeAccount.withdraw(i);
else
freeAccount.withdraw((int)(i*1.02));
unit+=(double)i/(double)j;
} catch(Exception ex) {
System.out.println(ex.getMessage());
}
}
void sell(double d,int i){
if(specialaccount.isEmpt())
freeAccount.deposit((int)(d*i));
else
freeAccount.deposit((int)(d*i*0.98));
unit-=d;
}
int balance(int i){
return (int)(unit*i);
}
double getUnit(){
return unit;
}
}
class InternetAccount{
DepositAccount deposit;
FreeAccount free;
SpecialAccount specisl;
FundAccount fund;
InternetAccount(){}
void setDeposit(DepositAccount d){deposit = d;}
void setFree(FreeAccount f){free=f;}
void setSpecial(SpecialAccount s){specisl=s;}
void setFund(FundAccount ff){fund=ff;}
int getTotalBalance(){
return deposit.balance+free.balance+specisl.balance;
}
}
class MultiFund{
HashMap funds;
MultiFund(){
funds = new HashMap();
}
void addFund(String s, FundAccount fundaccount){
funds.put(s, fundaccount);
}
void printEachUnit(){
FundAccount fundaccount;
for(Iterator iterator = funds.values().iterator();iterator.hasNext();System.out.println(fundaccount.fundName+" : "+fundaccount.getUnit()))
fundaccount = (FundAccount)iterator.next();
}
int getFundBalance(String s ,int i){
return ((FundAccount)funds.get(s)).balance(i);
}
}
class JPA06_5 {
public static void main(String args[]) {
DepositAccount deposit = new DepositAccount("peter", 2);
deposit.deposit(5000);
FreeAccount free = new FreeAccount("peter");
free.deposit(20000);
SpecialAccount special = new SpecialAccount("peter");
special.deposit(10000);
deposit.addInterest();
free.addInterest();
special.addInterest();
FundAccount fund = new FundAccount("peter", "A", free, special);
//加入try catch,確保可以抓取錯誤提款訊息
try {
fund.buy(15000, 500);
special.withdraw(5000);
fund.buy(2000, 300);
fund.sell(fund.getUnit(), 400);
InternetAccount internet = new InternetAccount();
internet.setDeposit(deposit);
internet.setFree(free);
internet.setSpecial(special);
internet.setFund(fund);
MultiFund multi = new MultiFund();
multi.addFund("A", fund);
FundAccount fundB = new FundAccount("peter", "B", free, special);
fundB.buy(2000, 50);
multi.addFund("B", fundB);
FundAccount fundC = new FundAccount("peter", "C", free, special);
fundC.buy(5000, 30);
multi.addFund("C", fundC);
fund.buy(14000, 300);
} catch(Exception e) {
System.out.println(e.getMessage());
}
}
}


TQC+ JAVA6 試題總覽:LINK
Github 備份:LINK

本篇教學的程式碼皆由筆者編輯,歡迎轉貼本教學,但請全文轉貼,謝啦~

TQC+ JAVA 603 冰品計價系統

參考程式碼:

第一題
package JPA603.JP06_1;
//建立一個共用的方法,以供其他方法繼承
class Unit
{
 double cost,price;
  Unit()
  {
 cost = 0.0;
 price = 0.0;
  }
public double getCost(){return cost;}
public double getPrice(){return price;}
}
//建立每個原料的方法,並且繼承Unit,繼承其方法和成員
class Apple extends Unit{Apple(){cost = 6.0;price=10.0;}}
class Banana extends Unit{Banana(){cost = 2.0;price=5.0;}}
class Pudding extends Unit{Pudding(){cost = 3.0;price=5.0;}}
class Strawberry extends Unit{Strawberry(){cost = 1.0;price=5.0;}}
class Mango extends Unit{Mango(){cost = 2.0;price=5.0;}}


class JPD06_1 {   
    public static void main(String args[]) {
        //產生個原料的物件
     Apple ab = new Apple();
        Banana bb = new Banana();
        Pudding pt = new Pudding();
        System.out.println("Apple cost:" + ab.getCost());
        System.out.println("Apple price:" + ab.getPrice());
        System.out.println("Banana cost:" + bb.getCost());
        System.out.println("Banana price:" + bb.getPrice());
        System.out.println("Pudding cost:" + pt.getCost());
        System.out.println("Pudding price:" + pt.getPrice());
    }
}

第二題
package JPA603.JP06_2;

class Unit
{
 double cost,price;
  Unit()
  {
 cost = 0.0;
 price = 0.0;
  }
public double getCost(){return cost;}
public double getPrice(){return price;}
}

class Apple extends Unit{Apple(){cost = 6.0;price=10.0;}}
class Banana extends Unit{Banana(){cost = 2.0;price=5.0;}}
class Pudding extends Unit{Pudding(){cost = 3.0;price=5.0;}}
class Strawberry extends Unit{Strawberry(){cost = 1.0;price=5.0;}}
class Mango extends Unit{Mango(){cost = 2.0;price=5.0;}}

//建立一個抽象的 product方法,供A、B套餐繼承
abstract class product{
 product(){}
 //抽象取得成本
 abstract double getCost();
 //抽象取得售價
 abstract double getPrice();
 //建立利潤方法
 double getProfit(){return getPrice()-getCost();}
}

//A套餐方法
class A extends product{
 Unit a1,a2;
 //建構子,傳入兩個參數,供初始化
 A(Unit b1,Unit b2)
 {a1=b1;a2=b2;}
 double getCost(){return a1.getCost()+a2.getCost();}
 double getPrice(){return a1.getPrice()+a2.getPrice();}
}
//B套餐方法
class B extends product{
 Unit a1,a2,a3;
 //建構子,傳入三個參數,供初始化
 B(Unit b1,Unit b2,Unit b3)
 {a1=b1;a2=b2;a3=b3;}
 double getCost(){return a1.getCost()+a2.getCost()+a3.getCost();}
 double getPrice(){return a1.getPrice()+a2.getPrice()+a3.getPrice();}
}
class JPD06_2 {
    public static void main(String args[]) {
 //產生A套餐的物件,並傳入兩個原料物件
    A t1 = new A(new Apple(), new Banana());
    //產生B套餐的物件,並傳入三個原料物件
 B t2 = new B(new Banana(), new Pudding(), new Strawberry());
 B t3 = new B(new Apple(), new Banana(), new Mango());

        System.out.println("t1 price:" + t1.getPrice());
        System.out.println("t1 profit:" + t1.getProfit());
        System.out.println("t2 price:" + t2.getPrice());
        System.out.println("t2 profit:" + t2.getProfit());
        System.out.println("t3 price:" + t3.getPrice());
        System.out.println("t3 profit:" + t3.getProfit());
    }
}

第三題
package JPA603.JP06_3;

class Unit
{
 double cost,price;
  Unit()
  {
 cost = 0.0;
 price = 0.0;
  }
public double getCost(){return cost;}
public double getPrice(){return price;}
}

class Apple extends Unit{Apple(){cost = 6.0;price=10.0;}}
class Banana extends Unit{Banana(){cost = 2.0;price=5.0;}}
class Pudding extends Unit{Pudding(){cost = 3.0;price=5.0;}}
class Strawberry extends Unit{Strawberry(){cost = 1.0;price=5.0;}}
class Mango extends Unit{Mango(){cost = 2.0;price=5.0;}}

abstract class product{
 product(){}
 abstract double getCost();
 abstract double getPrice();
 double getProfit(){return getPrice()-getCost();}
}
//建立C套餐的方法,由A套餐改造而來的,僅修改成本部分
class C extends product{
 Unit a1,a2;
 C(Unit b1,Unit b2)
 {a1=b1;a2=b2;}
 double getCost(){return a1.getCost()+a2.getCost()+2;}
 double getPrice(){return (a1.getPrice()+a2.getPrice())*1.5;}
}
//建立D套餐的方法,由B套餐改造而來的,僅修改成本部分
class D extends product{
 Unit a1,a2,a3;
 D(Unit b1,Unit b2,Unit b3)
 {a1=b1;a2=b2;a3=b3;}
 double getCost(){return a1.getCost()+a2.getCost()+a3.getCost()+2;}
 double getPrice(){return (a1.getPrice()+a2.getPrice()+a3.getPrice())*1.5;}
}

class JPD06_3 {
    public static void main(String args[]) {
        //建立套餐的物件,將原料物件傳入套餐中
     C t1 = new C (new Apple(), new Banana());
     D t2 = new D (new Banana(), new Pudding(), new Strawberry());
     D t3 = new D (new Apple(), new Banana(), new Mango());

        System.out.println("t1 cost:" + t1.getCost());
     System.out.println("t1 price:" + t1.getPrice());
        System.out.println("t1 profit:" + t1.getProfit());
        System.out.println("t2 cost:" + t2.getCost());
     System.out.println("t2 price:" + t2.getPrice());
        System.out.println("t2 profit:" + t2.getProfit());
        System.out.println("t3 cost:" + t3.getCost());
     System.out.println("t3 price:" + t3.getPrice());
        System.out.println("t3 profit:" + t3.getProfit());
    }
}

第四題
package JPA603.JP06_4;

import java.util.*;

class Unit
{
 double cost,price;
  Unit()
  {
 cost = 0.0;
 price = 0.0;
  }
public double getCost(){return cost;}
public double getPrice(){return price;}
}

class Apple extends Unit{Apple(){cost = 6.0;price=10.0;}}
class Banana extends Unit{Banana(){cost = 2.0;price=5.0;}}
class Pudding extends Unit{Pudding(){cost = 3.0;price=5.0;}}
class Strawberry extends Unit{Strawberry(){cost = 1.0;price=5.0;}}
class Mango extends Unit{Mango(){cost = 2.0;price=5.0;}}

abstract class product{
 product(){}
 abstract double getCost();
 abstract double getPrice();
 double getProfit(){return getPrice()-getCost();}
}

class A extends product{
 Unit a1,a2;
 A(Unit b1,Unit b2) {a1=b1;a2=b2;}
 
 double getCost(){return a1.getCost()+a2.getCost();}
 double getPrice(){return a1.getPrice()+a2.getPrice();}
}

class B extends product{
 Unit a1,a2,a3;
 B(Unit b1,Unit b2,Unit b3){a1=b1;a2=b2;a3=b3;}
 
 double getCost(){return a1.getCost()+a2.getCost()+a3.getCost();}
 double getPrice(){return a1.getPrice()+a2.getPrice()+a3.getPrice();}
}

class Deliver{
 //建立一個LinkedList來存放套餐的物件
 LinkedList ap;
 //利用建構子產生LinkedList的物件
 Deliver()
 {ap=new LinkedList();}
 //建立加入套餐的物件
 void addProduct(product p)
 {ap.add(p);}
 
 double getTotalPrice()
 {
  double d=0.0;
  for(Iterator iterator=ap.iterator();iterator.hasNext();)
  {
   product p = (product)iterator.next();
   d+=p.getPrice();//累加售價
  }
  return d;
 }
 
 double getTotalCost()
 {
  double d=0.0;
  for(Iterator iterator=ap.iterator();iterator.hasNext();)
  {
   product p = (product)iterator.next();
    d+=p.getCost();//累加成本
  }
  return d;
 } 
 
 double getTotalProfit()
 {
  double d=0.0;
  for(Iterator iterator=ap.iterator();iterator.hasNext();)
  {
   product p = (product)iterator.next();
    d+=(p.getPrice()-p.getCost());//累加利潤
  }
  return d;
 } 
 
}

class JPD06_4 {
    public static void main(String args[]){
        //產生外送物件
     Deliver d1 = new Deliver();
        //將A套餐的物件放入,A套餐又放入兩個原料來組成
     d1.addProduct(new A(new Apple(), new Banana()));
     //將B套餐的物件放入,B套餐又放入三個原料來組成
     d1.addProduct(new B(new Banana(), new Pudding(), new Strawberry()));
        System.out.println("a Price: " + d1.getTotalPrice());
        System.out.println("a Cost: " + d1.getTotalCost());
        System.out.println("a Profit: " + d1.getTotalProfit());
        Deliver d2 = new Deliver();
        d2.addProduct(new B(new Apple(), new Banana(), new Mango()));
        d2.addProduct(new A(new Apple(), new Banana()));
        d2.addProduct(new B(new Banana(), new Pudding(), new Strawberry()));
        d2.addProduct(new B(new Apple(), new Banana(), new Mango()));
        System.out.println("b Price: " + d2.getTotalPrice());
        System.out.println("b Cost: " + d2.getTotalCost());
        System.out.println("b Profit: " + d2.getTotalProfit());
    }
}

第五題
package JPA603.JP06_5;

import java.util.*;

class Unit
{
 double cost,price;
  Unit()
  {
 cost = 0.0;
 price = 0.0;
  }
public double getCost(){return cost;}
public double getPrice(){return price;}
}

class Apple extends Unit{Apple(){cost = 6.0;price=10.0;}}
class Banana extends Unit{Banana(){cost = 2.0;price=5.0;}}
class Pudding extends Unit{Pudding(){cost = 3.0;price=5.0;}}
class Strawberry extends Unit{Strawberry(){cost = 1.0;price=5.0;}}
class Mango extends Unit{Mango(){cost = 2.0;price=5.0;}}

abstract class product{
 product(){}
 abstract double getCost();
 abstract double getPrice();
 double getProfit(){return getPrice()-getCost();}
}

class A extends product{
 Unit a1,a2;
 A(Unit b1,Unit b2){a1=b1;a2=b2;}
 double getCost(){return a1.getCost()+a2.getCost();}
 double getPrice(){return a1.getPrice()+a2.getPrice();}
}

class B extends product{
 Unit a1,a2,a3;
 B(Unit b1,Unit b2,Unit b3){a1=b1;a2=b2;a3=b3;}
 double getCost(){return a1.getCost()+a2.getCost()+a3.getCost();}
 double getPrice(){return a1.getPrice()+a2.getPrice()+a3.getPrice();}
}

class Deliver{
 LinkedList ap;
 Deliver(){ap=new LinkedList();}
 void addProduct(product p){ap.add(p);}
 //建立一個檢查的方法,若有符合特定條件,則丟出Exception來警示
 double checkOut() throws notenoughorder
 {
  double d = getTotalPrice();
  if(d<50)
   throw new notenoughorder(this);
  else
   return d;
 } 
 
 double getTotalPrice()
 {
  double d=0.0;
  for(Iterator iterator=ap.iterator();iterator.hasNext();)
  {
   product p = (product)iterator.next();
   d+=p.getPrice();
  }
  return d;
 }
 
 double getTotalCost()
 {
  double d=0.0;
  for(Iterator iterator=ap.iterator();iterator.hasNext();)
  {
   product p = (product)iterator.next();
   d+=p.getCost();
  }
  return d;
 } 
 
 double getTotalProfit()
 {
  double d=0.0;
  for(Iterator iterator=ap.iterator();iterator.hasNext();)
  {
   product p = (product)iterator.next();
   d+=(p.getPrice()-p.getCost());
  }
  return d;
 } 
 
}


//建立一個Exception的方法,並傳入外送物件
class notenoughorder extends Exception{
 static Deliver d;
 notenoughorder(Deliver deliver){d=deliver;}
 //在裡面再建立一個order的方法,回傳外送總價
 static double order(){return d.getTotalPrice();}
}

class JPD06_5 {
    public static void main(String args[]) {
       //利用try-catch包住整個main的程式
     try{
            Deliver d1 = new Deliver();
            d1.addProduct(new A(new Apple(), new Banana()));
            d1.addProduct(new B(new Banana(), new Pudding(), new Strawberry()));
            d1.addProduct(new B(new Banana(), new Pudding(), new Strawberry()));
            d1.addProduct(new B(new Apple(), new Banana(), new Mango()));
            System.out.println("a Price: " + d1.getTotalPrice());
            System.out.println("a Cost: " + d1.getTotalCost());
            System.out.println("a Profit: " + d1.getTotalProfit());
            System.out.println("");
            //進行外送的檢查
            d1.checkOut();            
            Deliver d2 = new Deliver();
            d2.addProduct(new B(new Apple(), new Banana(), new Mango()));
            d2.addProduct(new A(new Apple(), new Banana()));
            System.out.println("b Price: " + d2.getTotalPrice());
            System.out.println("b Cost: " + d2.getTotalCost());
            System.out.println("b Profit: " + d2.getTotalProfit());
             //進行外送的檢查
            d2.checkOut();   
       }
        catch(notenoughorder e)//抓取錯誤的catch
            {
         //抓取到錯誤後,會進來此block,執行程式
          System.out.println("Not enough order for carry out:"+
             notenoughorder.order()); 
            }
        }
    }




TQC+ JAVA6 試題總覽:連結


聲明:

本篇教學的程式碼皆由作者群編輯,歡迎轉貼本教學,但請全文轉貼,尊重一下作者群的心血喔 ^_^

TQC+ JAVA 603 冰品計價系統

TQC+ JAVA6 試題總覽:LINK
Github 備份:LINK

/* TQC+ JAVA6 - 603_1 */
//建立一個共用的方法,以供其他方法繼承
class Unit{
double cost,price;
Unit() {
cost = 0.0;
price = 0.0;
}
public double getCost(){
return cost;
}
public double getPrice(){
return price;
}
}
//建立每個原料的方法,並且繼承Unit,繼承其方法和成員
class Apple extends Unit{
Apple(){
cost = 6.0;
price=10.0;
}
}
class Banana extends Unit{
Banana(){
cost = 2.0;
price=5.0;
}
}
class Pudding extends Unit{
Pudding(){
cost = 3.0;
price=5.0;
}
}
class Strawberry extends Unit{
Strawberry(){
cost = 1.0;
price=5.0;
}
}
class Mango extends Unit{
Mango(){
cost = 2.0;
price=5.0;
}
}
class JPA06_1 {
public static void main(String args[]) {
//產生個原料的物件
Apple ab = new Apple();
Banana bb = new Banana();
Pudding pt = new Pudding();
System.out.println("Apple cost:" + ab.getCost());
System.out.println("Apple price:" + ab.getPrice());
System.out.println("Banana cost:" + bb.getCost());
System.out.println("Banana price:" + bb.getPrice());
System.out.println("Pudding cost:" + pt.getCost());
System.out.println("Pudding price:" + pt.getPrice());
}
}
/* TQC+ JAVA6 - 603_2 */
class Unit{
double cost,price;
Unit(){
cost = 0.0;
price = 0.0;
}
public double getCost(){
return cost;
}
public double getPrice(){
return price;
}
}
class Apple extends Unit{
Apple(){
cost = 6.0;
price=10.0;
}
}
class Banana extends Unit{
Banana(){
cost = 2.0;
price=5.0;
}
}
class Pudding extends Unit{
Pudding(){
cost = 3.0;
price=5.0;
}
}
class Strawberry extends Unit{
Strawberry(){
cost = 1.0;
price=5.0;
}
}
class Mango extends Unit{
Mango(){
cost = 2.0;
price=5.0;
}
}
//建立一個抽象的 product方法,供A、B套餐繼承
abstract class product{
product(){}
//抽象取得成本
abstract double getCost();
//抽象取得售價
abstract double getPrice();
//建立利潤方法
double getProfit(){
return getPrice()-getCost();
}
}
//A套餐方法
class A extends product{
Unit a1,a2;
//建構子,傳入兩個參數,供初始化
A(Unit b1,Unit b2){
a1=b1;
a2=b2;
}
double getCost(){
return a1.getCost()+a2.getCost();
}
double getPrice(){
return a1.getPrice()+a2.getPrice();
}
}
//B套餐方法
class B extends product{
Unit a1,a2,a3;
//建構子,傳入三個參數,供初始化
B(Unit b1,Unit b2,Unit b3){
a1=b1;
a2=b2;
a3=b3;
}
double getCost(){
return a1.getCost()+a2.getCost()+a3.getCost();
}
double getPrice(){
return a1.getPrice()+a2.getPrice()+a3.getPrice();
}
}
class JPA06_2 {
public static void main(String args[]) {
//產生A套餐的物件,並傳入兩個原料物件
A t1 = new A(new Apple(), new Banana());
//產生B套餐的物件,並傳入三個原料物件
B t2 = new B(new Banana(), new Pudding(), new Strawberry());
B t3 = new B(new Apple(), new Banana(), new Mango());
System.out.println("t1 price:" + t1.getPrice());
System.out.println("t1 profit:" + t1.getProfit());
System.out.println("t2 price:" + t2.getPrice());
System.out.println("t2 profit:" + t2.getProfit());
System.out.println("t3 price:" + t3.getPrice());
System.out.println("t3 profit:" + t3.getProfit());
}
}
/* TQC+ JAVA6 - 603_3 */
class Unit{
double cost,price;
Unit() {
cost = 0.0;
price = 0.0;
}
public double getCost(){
return cost;
}
public double getPrice(){
return price;
}
}
class Apple extends Unit{
Apple(){
cost = 6.0;
price=10.0;
}
}
class Banana extends Unit{
Banana(){
cost = 2.0;
price=5.0;
}
}
class Pudding extends Unit{
Pudding(){
cost = 3.0;
price=5.0;
}
}
class Strawberry extends Unit{
Strawberry(){
cost = 1.0;
price=5.0;
}
}
class Mango extends Unit{
Mango(){
cost = 2.0;
price=5.0;
}
}
abstract class product{
product(){}
abstract double getCost();
abstract double getPrice();
double getProfit(){
return getPrice()-getCost();
}
}
//建立C套餐的方法,由A套餐改造而來的,僅修改成本部分
class C extends product{
Unit a1,a2;
C(Unit b1,Unit b2){
a1=b1;
a2=b2;
}
double getCost(){
return a1.getCost()+a2.getCost()+2;
}
double getPrice(){
return (a1.getPrice()+a2.getPrice())*1.5;
}
}
//建立D套餐的方法,由B套餐改造而來的,僅修改成本部分
class D extends product{
Unit a1,a2,a3;
D(Unit b1,Unit b2,Unit b3){
a1=b1;
a2=b2;
a3=b3;
}
double getCost(){
return a1.getCost()+a2.getCost()+a3.getCost()+2;
}
double getPrice(){
return (a1.getPrice()+a2.getPrice()+a3.getPrice())*1.5;
}
}
class JPA06_3 {
public static void main(String args[]) {
//建立套餐的物件,將原料物件傳入套餐中
C t1 = new C (new Apple(), new Banana());
D t2 = new D (new Banana(), new Pudding(), new Strawberry());
D t3 = new D (new Apple(), new Banana(), new Mango());
System.out.println("t1 cost:" + t1.getCost());
System.out.println("t1 price:" + t1.getPrice());
System.out.println("t1 profit:" + t1.getProfit());
System.out.println("t2 cost:" + t2.getCost());
System.out.println("t2 price:" + t2.getPrice());
System.out.println("t2 profit:" + t2.getProfit());
System.out.println("t3 cost:" + t3.getCost());
System.out.println("t3 price:" + t3.getPrice());
System.out.println("t3 profit:" + t3.getProfit());
}
}
/* TQC+ JAVA6 - 603_4 */
import java.util.*;
class Unit
{
double cost,price;
Unit(){
cost = 0.0;
price = 0.0;
}
public double getCost(){
return cost;
}
public double getPrice(){
return price;
}
}
class Apple extends Unit{
Apple(){
cost = 6.0;
price=10.0;
}
}
class Banana extends Unit{
Banana(){
cost = 2.0;
price=5.0;
}
}
class Pudding extends Unit{
Pudding(){
cost = 3.0;
price=5.0;
}
}
class Strawberry extends Unit{
Strawberry(){
cost = 1.0;
price=5.0;
}
}
class Mango extends Unit{
Mango(){
cost = 2.0;
price=5.0;
}
}
abstract class product{
product(){}
abstract double getCost();
abstract double getPrice();
double getProfit(){
return getPrice()-getCost();
}
}
class A extends product{
Unit a1,a2;
A(Unit b1,Unit b2){
a1=b1;
a2=b2;
}
double getCost(){
return a1.getCost()+a2.getCost();
}
double getPrice(){
return a1.getPrice()+a2.getPrice();
}
}
class B extends product{
Unit a1,a2,a3;
B(Unit b1,Unit b2,Unit b3){
a1=b1;
a2=b2;
a3=b3;
}
double getCost(){
return a1.getCost()+a2.getCost()+a3.getCost();
}
double getPrice(){
return a1.getPrice()+a2.getPrice()+a3.getPrice();
}
}
class Deliver{
//建立一個LinkedList來存放套餐的物件
LinkedList ap;
//利用建構子產生LinkedList的物件
Deliver(){
ap=new LinkedList();
}
//建立加入套餐的物件
void addProduct(product p){
ap.add(p);
}
double getTotalPrice(){
double d=0.0;
for(Iterator iterator=ap.iterator();iterator.hasNext();){
product p = (product)iterator.next();
d+=p.getPrice();//累加售價
}
return d;
}
double getTotalCost(){
double d=0.0;
for(Iterator iterator=ap.iterator();iterator.hasNext();){
product p = (product)iterator.next();
d+=p.getCost();//累加成本
}
return d;
}
double getTotalProfit(){
double d=0.0;
for(Iterator iterator=ap.iterator();iterator.hasNext();){
product p = (product)iterator.next();
d+=(p.getPrice()-p.getCost());//累加利潤
}
return d;
}
}
class JPA06_4 {
public static void main(String args[]){
//產生外送物件
Deliver d1 = new Deliver();
//將A套餐的物件放入,A套餐又放入兩個原料來組成
d1.addProduct(new A(new Apple(), new Banana()));
//將B套餐的物件放入,B套餐又放入三個原料來組成
d1.addProduct(new B(new Banana(), new Pudding(), new Strawberry()));
System.out.println("a Price: " + d1.getTotalPrice());
System.out.println("a Cost: " + d1.getTotalCost());
System.out.println("a Profit: " + d1.getTotalProfit());
Deliver d2 = new Deliver();
d2.addProduct(new B(new Apple(), new Banana(), new Mango()));
d2.addProduct(new A(new Apple(), new Banana()));
d2.addProduct(new B(new Banana(), new Pudding(), new Strawberry()));
d2.addProduct(new B(new Apple(), new Banana(), new Mango()));
System.out.println("b Price: " + d2.getTotalPrice());
System.out.println("b Cost: " + d2.getTotalCost());
System.out.println("b Profit: " + d2.getTotalProfit());
}
}
/* TQC+ JAVA6 - 603_5 */
import java.util.*;
class Unit{
double cost,price;
Unit(){
cost = 0.0;
price = 0.0;
}
public double getCost(){
return cost;
}
public double getPrice(){
return price;
}
}
class Apple extends Unit{
Apple(){
cost = 6.0;
price=10.0;
}
}
class Banana extends Unit{
Banana(){
cost = 2.0;
price=5.0;
}
}
class Pudding extends Unit{
Pudding(){
cost = 3.0;
price=5.0;
}
}
class Strawberry extends Unit{
Strawberry(){
cost = 1.0;
price=5.0;
}
}
class Mango extends Unit{
Mango(){
cost = 2.0;
price=5.0;
}
}
abstract class product{
product(){}
abstract double getCost();
abstract double getPrice();
double getProfit(){
return getPrice()-getCost();
}
}
class A extends product{
Unit a1,a2;
A(Unit b1,Unit b2){
a1=b1;
a2=b2;
}
double getCost(){
return a1.getCost()+a2.getCost();
}
double getPrice(){
return a1.getPrice()+a2.getPrice();
}
}
class B extends product{
Unit a1,a2,a3;
B(Unit b1,Unit b2,Unit b3){
a1=b1;
a2=b2;
a3=b3;
}
double getCost(){
return a1.getCost()+a2.getCost()+a3.getCost();
}
double getPrice(){
return a1.getPrice()+a2.getPrice()+a3.getPrice();
}
}
class Deliver{
LinkedList ap;
Deliver(){
ap=new LinkedList();
}
void addProduct(product p){
ap.add(p);
}
//建立一個檢查的方法,若有符合特定條件,則丟出Exception來警示
double checkOut() throws notenoughorder{
double d = getTotalPrice();
if(d<50)
throw new notenoughorder(this);
else
return d;
}
double getTotalPrice(){
double d=0.0;
for(Iterator iterator=ap.iterator();iterator.hasNext();)
{
product p = (product)iterator.next();
d+=p.getPrice();
}
return d;
}
double getTotalCost(){
double d=0.0;
for(Iterator iterator=ap.iterator();iterator.hasNext();){
product p = (product)iterator.next();
d+=p.getCost();
}
return d;
}
double getTotalProfit(){
double d=0.0;
for(Iterator iterator=ap.iterator();iterator.hasNext();){
product p = (product)iterator.next();
d+=(p.getPrice()-p.getCost());
}
return d;
}
}
//建立一個Exception的方法,並傳入外送物件
class notenoughorder extends Exception{
static Deliver d;
notenoughorder(Deliver deliver){
d=deliver;
}
//在裡面再建立一個order的方法,回傳外送總價
static double order(){
return d.getTotalPrice();
}
}
class JPA06_5 {
public static void main(String args[]) {
//利用try-catch包住整個main的程式
try{
Deliver d1 = new Deliver();
d1.addProduct(new A(new Apple(), new Banana()));
d1.addProduct(new B(new Banana(), new Pudding(), new Strawberry()));
d1.addProduct(new B(new Banana(), new Pudding(), new Strawberry()));
d1.addProduct(new B(new Apple(), new Banana(), new Mango()));
System.out.println("a Price: " + d1.getTotalPrice());
System.out.println("a Cost: " + d1.getTotalCost());
System.out.println("a Profit: " + d1.getTotalProfit());
System.out.println("");
//進行外送的檢查
d1.checkOut();
Deliver d2 = new Deliver();
d2.addProduct(new B(new Apple(), new Banana(), new Mango()));
d2.addProduct(new A(new Apple(), new Banana()));
System.out.println("b Price: " + d2.getTotalPrice());
System.out.println("b Cost: " + d2.getTotalCost());
System.out.println("b Profit: " + d2.getTotalProfit());
//進行外送的檢查
d2.checkOut();
} catch(notenoughorder e){ //抓取錯誤的catch
//抓取到錯誤後,會進來此block,執行程式
System.out.println("Not enough order for carry out:" + notenoughorder.order());
}
}
}


TQC+ JAVA6 試題總覽:LINK
Github 備份:LINK

本篇教學的程式碼皆由筆者編輯,歡迎轉貼本教學,但請全文轉貼,謝啦~

TQC+ JAVA 602 電腦零件設計

TQC+ JAVA6 試題總覽:LINK
Github 備份:LINK

/* TQC+ JAVA6 - 602_1 */
//建立一個共有的方法,以供其他方法繼承用
class Unit {
int cost;
Unit(){cost = 0;}
public int getcost(){
return cost;
}
}
//建立LCD的方法,內有初始化cost
class LCD extends Unit{
LCD(int i){
if(i==10)
cost=2000;
else if(i==15)
cost=2500;
else
cost=3000;
}
}
//建立CPU的方法,內有初始化cost
class CPU extends Unit{
CPU(double d ){
if(d==1.66)
cost=6000;
if(d==2.2)
cost=8000;
if(d==2.4)
cost=11000;
}
}
//建立HD的方法,內有初始化cost
class HD extends Unit {
HD(String s){
if(s=="120G")
cost = 2400;
else
cost = 2800;
}
}
//建立一個Note抽象類別
abstract class Note{
double cost;
LCD l;
CPU c;
HD dd;
Note(int i,double d,String s){
l = new LCD(i);
c = new CPU(d);
dd = new HD(s);
}
abstract public double getCost();
abstract public double getPrice();
}
//建立一個小筆電的方法
class MiniNote extends Note{
//建構子,將值傳遞給父親
MiniNote(){
super(10,1.66,"120G");
//計算cost值,其中使用的物件由父親繼承下來
cost = l.getcost()+c.getcost()+dd.getcost();
}
public double getCost(){
return cost*1.4;
}
public double getPrice(){
return cost*2.0;
}
}
//建立一個15吋筆電的方法
class Note15 extends Note{
Note15(){
super(15,2.2,"160G");
cost = l.getcost()+c.getcost()+dd.getcost();
}
public double getCost(){
return cost*1.4;
}
public double getPrice(){
return cost*2.0;
}
}
class JPA06_1 {
public static void main(String args[]){
//產生小筆電的物件
MiniNote mininote = new MiniNote();
System.out.println("MiniNote cost:"+mininote.getCost()+", price:"+mininote.getPrice());
//產生15吋筆電的物件
Note15 note15 = new Note15();
System.out.println("Note15 cost:"+note15.getCost()+", price:"+note15.getPrice());
}
}
/* TQC+ JAVA6 - 602_2 */
class Unit{
int cost;
Unit(){
cost = 0;
}
public int getcost(){
return cost;
}
}
class LCD extends Unit{
LCD(int i){
if(i==10)
cost=2000;
else if(i==15)
cost=2500;
else
cost=3000;
}
}
class CPU extends Unit{
CPU(double d ){
if(d==1.66)
cost=6000;
if(d==2.2)
cost=8000;
if(d==2.4)
cost=11000;
}
}
class HD extends Unit{
HD(String s){
if(s=="120G")
cost = 2400;
else
cost = 2800;
}
}
//建立公用的方法,以供繼承
abstract class PCandMultiPC{
double cost;
CPU l;
HD c;
PCandMultiPC() {
l = new CPU(2.4);
c = new HD("160G");
}
abstract public double getCost();
abstract public double getPrice();
}
class PC extends PCandMultiPC{
public double getCost(){
return (l.getcost()+c.getcost()+500);
}
public double getPrice(){
return (l.getcost()+c.getcost())*1.8;
}
}
class MultiPC extends PCandMultiPC{
double toa;
MultiPC(int a,int b) {
toa = a*l.getcost()+b*c.getcost();
}
public double getCost(){
return (toa*1.2);
}
public double getPrice(){
return (toa*1.8);
}
}
class JPA06_2 {
public static void main(String args[]){
PC pc = new PC();
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+ JAVA6 - 602_3 */
class Unit{
int cost;
Unit(){
cost = 0;
}
public int getcost(){
return cost;
}
}
class LCD extends Unit{
LCD(int i){
if(i==10)
cost=2000;
else if(i==15)
cost=2500;
else
cost=3000;
}
}
class CPU extends Unit{
CPU(double d ){
if(d==1.66)
cost=6000;
if(d==2.2)
cost=8000;
if(d==2.4)
cost=11000;
}
}
class HD extends Unit{
HD(String s){
if(s=="120G")
cost = 2400;
else
cost = 2800;
}
}
abstract class Note{
double cost;
LCD l;
CPU c;
HD dd;
Note(int i,double d,String s){
l = new LCD(i);
c = new CPU(d);
dd = new HD(s);
}
abstract public double getCost();
abstract public double getPrice();
}
class MiniNote extends Note{
MiniNote(){
super(10,1.66,"120G");
cost = l.getcost()+c.getcost()+dd.getcost();
}
public double getCost(){
return cost*1.4;
}
public double getPrice(){
return cost*2.0;
}
}
class Note15 extends Note{
Note15(){
super(15,2.2,"160G");
cost = l.getcost()+c.getcost()+dd.getcost();
}
public double getCost(){
return cost*1.4;
}
public double getPrice(){
return cost*2.0;
}
}
abstract class PCandMultiPC{
double cost;
CPU l;
HD c;
PCandMultiPC(){
l = new CPU(2.4);
c = new HD("160G");
}
abstract public double getCost();
abstract public double getPrice();
}
class PC extends PCandMultiPC{
public double getCost(){
return (l.getcost()+c.getcost()+500);
}
public double getPrice(){
return (l.getcost()+c.getcost())*1.8;
}
}
class MultiPC extends PCandMultiPC{
double total;
MultiPC(int a,int b){
total = a*l.getcost()+b*c.getcost();
}
public double getCost(){
return (total*1.2);
}
public double getPrice(){
return (total*1.8);
}
}
//建立一個AllPC的方法
class AllPC{
//將傳進來的物件,取得其成本的方法
double a1,a2;
AllPC(PCandMultiPC p,Note n){
a1=p.getCost();
a2=n.getCost();
}
//設計一個比較方法,回傳布林值
public boolean isExpensive(){
if(a1>a2)
return true;
else
return false;
}
}
class JPA06_3 {
public static void main(String args[]) {
PC pc = new PC();
Note15 note15 = new Note15();
//產生一個物件,放入兩個物件去比較
AllPC app = new AllPC(pc, note15);
if(app.isExpensive())
System.out.println("PC is more expensive then Note15 ");
else
System.out.println("Note15 is more expensive then PC ");
}
}
/* TQC+ JAVA6 - 602_4 */
import java.util.Iterator;
import java.util.LinkedList;
class Unit{
int cost;
Unit(){
cost = 0;
}
public int getcost(){
return cost;
}
}
class LCD extends Unit{
LCD(int i){
if(i==10)
cost=2000;
else if(i==15)
cost=2500;
else
cost=3000;
}
}
class CPU extends Unit{
CPU(double d ){
if(d==1.66)
cost=6000;
if(d==2.2)
cost=8000;
if(d==2.4)
cost=11000;
}
}
class HD extends Unit{
HD(String s){
if(s=="120G")
cost = 2400;
else
cost = 2800;
}
}
abstract class Note extends AllPC{
double cost;
LCD l;
CPU c;
HD dd;
Note(int i,double d,String s){
l = new LCD(i);
c = new CPU(d);
dd = new HD(s);
}
abstract public double getCost();
abstract public double getPrice();
}
class MiniNote extends Note{
MiniNote(){
super(10,1.66,"120G");
cost = l.getcost()+c.getcost()+dd.getcost();
}
public double getCost(){
return cost*1.4;
}
public double getPrice(){
return cost*2.0;
}
}
class Note15 extends Note{
Note15(){
super(15,2.2,"160G");
cost = l.getcost()+c.getcost()+dd.getcost();
}
public double getCost(){
return cost*1.4;
}
public double getPrice(){
return cost*2.0;
}
}
abstract class PCandMultiPC extends AllPC{
double cost;
CPU l;
HD c;
PCandMultiPC(){
l = new CPU(2.4);
c = new HD("160G");
}
abstract public double getCost();
abstract public double getPrice();
}
class PC extends PCandMultiPC{
public double getCost(){
return (l.getcost()+c.getcost()+500);
}
public double getPrice(){
return (l.getcost()+c.getcost())*1.8;
}
}
class MultiPC extends PCandMultiPC{
double total;
MultiPC(int a,int b){
total = a*l.getcost()+b*c.getcost();
}
public double getCost(){
return (total*1.2);
}
public double getPrice(){
return (total*1.8);
}
}
abstract class AllPC{
AllPC(){}
abstract public double getCost();
abstract public double getPrice();
}
//建立一個訂單的方法
class Order{
//使用LinkedList來儲存每筆電腦物件
LinkedList pcs;
//利用建構子來建立LinkedList物件
Order(){
pcs = new LinkedList();
}
void in(AllPC allpc){
pcs.add(allpc);
}
public double revenue(){
double d =0.0;
//利用iterator來依序讀取LinkedList內的物件
for(Iterator iterator = pcs.iterator();iterator.hasNext();){
//將下一個物件讀入
AllPC allpc = (AllPC)iterator.next();
d=d+allpc.getPrice();
}
return d;
}
}
class JPA06_4 {
public static void main(String args[]){
//建立訂單物件
Order ord = new Order();
//寫入訂單
ord.in(new MiniNote());
ord.in(new Note15());
ord.in(new PC());
System.out.println(ord.revenue());
}
}
/* TQC+ JAVA6 - 602_5 */
import java.util.Iterator;
import java.util.LinkedList;
class Unit{
int cost;
Unit(){
cost = 0;
}
public int getcost(){
return cost;
}
}
class LCD extends Unit{
LCD(int i){
if(i==10)
cost=2000;
else if(i==15)
cost=2500;
else
cost=3000;
}
}
class CPU extends Unit{
CPU(double d ){
if(d==1.66)
cost=6000;
if(d==2.2)
cost=8000;
if(d==2.4)
cost=11000;
}
}
class HD extends Unit{
HD(String s){
if(s=="120G")
cost = 2400;
else
cost = 2800;
}
}
abstract class Note extends AllPC{
double cost;
LCD l;
CPU c;
HD dd;
Note(int i,double d,String s){
l = new LCD(i);
c = new CPU(d);
dd = new HD(s);
}
abstract public double getCost();
abstract public double getPrice();
}
class MiniNote extends Note{
MiniNote(){
super(10,1.66,"120G");
cost = l.getcost()+c.getcost()+dd.getcost();
}
public double getCost(){
return cost*1.4;
}
public double getPrice(){
return cost*2.0;
}
}
class Note15 extends Note{
Note15(){
super(15,2.2,"160G");
cost = l.getcost()+c.getcost()+dd.getcost();
}
public double getCost(){return cost*1.4;}
public double getPrice(){return cost*2.0;}
}
abstract class PCandMultiPC extends AllPC{
double cost;
CPU l;
HD c;
PCandMultiPC() {
l = new CPU(2.4);
c = new HD("160G");
}
abstract public double getCost();
abstract public double getPrice();
}
class PC extends PCandMultiPC{
public double getCost(){
return (l.getcost()+c.getcost()+500);
}
public double getPrice(){
return (l.getcost()+c.getcost())*1.8;
}
}
class MultiPC extends PCandMultiPC{
double toa;
MultiPC(int a,int b){
toa = a*l.getcost()+b*c.getcost();
}
public double getCost(){
return (toa*1.2);
}
public double getPrice(){
return (toa*1.8);
}
}
abstract class AllPC{
AllPC(){}
abstract public double getCost();
abstract public double getPrice();
}
class Order{
LinkedList pcs;
Order(){
pcs = new LinkedList();
}
void in(AllPC allpc){
pcs.add(allpc);
}
public double revenue(){
double d =0.0;
for(Iterator iterator = pcs.iterator();iterator.hasNext();){
AllPC allpc = (AllPC)iterator.next();
d=d+allpc.getPrice();
}
return d;
}
}
class JPA06_5 {
public static void main(String args[]){
//產生物件
Order ord = new Order();
MiniNote m =new MiniNote();
Note15 n =new Note15();
PC p =new PC();
//加入訂單中
ord.in(m);
ord.in(n);
ord.in(p);
//計算總成本
double totalcost = m.getCost()+n.getCost()+p.getCost();
//價算利潤
double profit = ord.revenue() - totalcost;
if(profit>20000)
System.out.printf("This order exceeds 20000:%.1f",profit);
}
}


TQC+ JAVA6 試題總覽:LINK
Github 備份:LINK

本篇教學的程式碼皆由筆者編輯,歡迎轉貼本教學,但請全文轉貼,謝啦~

TQC+ JAVA 601 汽車零件設計

TQC+ JAVA6 試題總覽:LINK
Github 備份:LINK

/* TQC+ JAVA6 - 601_1 */
//建立一個共有的方法
class Unit{
int cost ;
Unit(){
cost = 0;
}
public int getCost(){
return cost;
}
}
//引擎方法,繼承Unit,取得成本方法
class Engine extends Unit {
Engine(int i){
if(i==1600)
cost=20000;
else
cost= 25000;
}
}
//空調方法,繼承Unit,取得成本方法
class Aircond extends Unit{
Aircond(String s ) {
if(s.equals("auto"))
cost = 12000;
else
cost = 10000;
}
}
//音響方法,繼承Unit,取得成本方法
class Sound extends Unit{
Sound(){
cost = 2000;
}
}
public class JPA06_1 {
public static void main(String args[]){
//產生一個1600cc引擎物件
Engine e1 = new Engine(1600);
System.out.println("1600 cost: " + e1.getCost());
//產生一個2000cc引擎物件
Engine e2 = new Engine(2000);
System.out.println("2000 cost: " + e2.getCost());
//產生一個Auto空調物件
Aircond a1 = new Aircond("auto");
System.out.println("Auto: " + a1.getCost());
//產生一個Manual空調物件
Aircond a2 = new Aircond("manual");
System.out.println("Manual: " + a2.getCost());
//產生一個音響物件
Sound s1 = new Sound();
System.out.println("Stereo: " + s1.getCost());
}
}
/* TQC+ JAVA6 - 601_2 */
class Unit{
int cost ;
Unit(){cost = 0;}
public int getCost(){return cost;}
}
class Engine extends Unit {
Engine(int i){
if(i==1600)
cost=20000;
else
cost= 25000;
}
}
class Aircond extends Unit{
Aircond(String s ){
if(s.equals("Auto"))
cost = 12000;
else
cost = 10000;
}
}
class Sound extends Unit{
Sound(){
cost = 2000;
}
}
//建立一個Car共有的方法
abstract class Car{
Engine e;
Aircond a;
Car(int i,String s){
e = new Engine(i);
a = new Aircond(s);
}
public abstract double cost();
public double price(){
return cost() *1.2;
}
}
//建立一個基本型車種方法,繼承Car方法
class BasicCar extends Car{
public BasicCar(int i ,String s ){
super(i,s);
}
public double cost(){
return e.getCost()+a.getCost()+5000;
}
}
//建立一個豪華車種方法,繼承Car方法
class LuxCar extends Car{
public LuxCar(int i ,String s ){
super(i,s);
}
public double cost(){
return e.getCost()+a.getCost()+10000;
}
}
public class JPA06_2 {
public static void main(String args[]){
//產生一個基本車種的物件
BasicCar bc = new BasicCar(1600,"Manual");
System.out.println("Basic cost: " + bc.cost());
System.out.println("Basic price: " + bc.price());
//產生一個豪華車種的物件
LuxCar lc = new LuxCar(2000,"Auto");
System.out.println("Lux cost: " + lc.cost());
System.out.println("Lux price: " + lc.price());
}
}
/* TQC+ JAVA6 - 601_3 */
class Unit{
int cost ;
Unit(){
cost = 0;
}
public int getCost(){
return cost;
}
}
class Engine extends Unit {
Engine(int i){
if(i==1600)
cost=20000;
else
cost= 25000;
}
}
class Aircond extends Unit{
Aircond(String s ){
if(s.equals("Auto"))
cost = 12000;
else
cost = 10000;
}
}
class Sound extends Unit{
Sound(){
cost = 2000;
}
}
abstract class Car{
Engine e;
Aircond a;
Car(int i,String s){
e = new Engine(i);
a = new Aircond(s);
}
public abstract double cost();
public double price(){
return cost() *1.2;
}
}
class LuxCar extends Car{
public LuxCar(int i ,String s ){
super(i,s);
}
public double cost(){
return e.getCost()+a.getCost()+10000;
}
}
//建立一個超級豪華車款
class SLuxCar extends Car{
public SLuxCar(int i ,String s ){//原本的引擎和空調
super(i,s);}
Sound sc = new Sound();
public double cost(){
return e.getCost()+a.getCost()+10000+sc.getCost();
}
public String expensive (LuxCar lc){
if(lc.price()<price())
return "YES!!";
else
return "NO!!";
}
}
public class JPA06_3 {
public static void main(String args[]) {
SLuxCar llc = new SLuxCar(2000,"Auto");
System.out.println("SLux cost: " + llc.cost());
System.out.println("SLux price: " + llc.price());
LuxCar lc = new LuxCar(2000,"Auto");
System.out.println("Is SLuxCar more expensive than LuxCar? " + llc.expensive(lc));
}
}
/* TQC+ JAVA6 - 601_4 */
import java.io.File;
import java.io.FileNotFoundException;
import java.util.ArrayList;
import java.util.Iterator;
import java.util.Scanner;
class Unit{
int cost ;
Unit(){cost = 0;}
public int getCost(){
return cost;
}
}
class Engine extends Unit {
Engine(int i){
if(i==1600)
cost=20000;
else
cost= 25000;
}
}
class Aircond extends Unit{
Aircond(String s ){
if(s.equals("auto"))
cost = 12000;
else
cost = 10000;
}
}
class Sound extends Unit{
Sound(){
cost = 2000;
}
}
abstract class Car{
Engine e;
Aircond a;
Car(int i,String s){
e = new Engine(i);
a = new Aircond(s);
}
public abstract double cost();
public double price(){
return cost() *1.2;
}
}
class BasicCar extends Car{
public BasicCar(int i ,String s ){
super(i,s);
}
public double cost(){
return e.getCost()+a.getCost()+5000;
}
}
class LuxCar extends Car{
public LuxCar(int i ,String s ){
super(i,s);
}
public double cost(){
return e.getCost()+a.getCost()+10000;
}
}
class SLuxCar extends Car{
public SLuxCar(int i ,String s ){
super(i,s);
}
Sound sc = new Sound();
public double cost(){
return e.getCost()+a.getCost()+10000+sc.getCost();
}
}
//建立一個倉庫的方法
class Warehouse{
private ArrayList cars;
//建立一個加入ArrayList的方法
public void add (Car car){
cars.add(car);
}
//建構子,初始化ArrayList
public Warehouse(){
cars = new ArrayList();
}
public double TotalCost(){
double i = 0.0;
//在List和Map系列裡面,都會有Iterator可搭配使用,檢視是否有下一個物件
for(Iterator iterator = cars.iterator();iterator.hasNext();){
Car car = (Car)iterator.next();
i = i + car.cost();
}
return i;
}
public double TotalPirce(){
return TotalCost()*1.2;
}
}
public class JPA06_4 {
public static void main(String args[]) {
Scanner sc = null;
//使用try-catch來抓取讀檔失敗的Exception
try {
//檔案位置,請自行放置
sc = new Scanner(new File("D:\\data.txt"));
} catch (FileNotFoundException e) {
System.out.println("File not found!");
System.exit(0);//讀檔失敗便關閉
}
Warehouse wh = new Warehouse();
boolean si = true ;
//使用一個do-while檢視,是否可以繼續執行下去
do{
if(sc.hasNext()) {
String s = sc.next();
int i = sc.nextInt();
String s1 = sc.next();
if(s.charAt(0)=='B')
//產生一個物件,並加入ArrayList中
wh.add(new BasicCar(i,s1));
if(s.charAt(0)=='S')
wh.add(new SLuxCar(i,s1));
if(s.charAt(0)=='L')
wh.add(new LuxCar(i,s1));
} else {
//如果讀取不到下一行資料,則進到這邊
System.out.println("Total cost: "+(int)wh.TotalCost());
System.out.println("Total cost: "+wh.TotalPirce());
//結束do-while的動作
si=false;
}
} while(si);
}
}
B 1600 manual
L 2000 auto
S 2000 auto
/* TQC+ JAVA6 - 601_5 */
import java.io.File;
import java.io.FileNotFoundException;
import java.util.ArrayList;
import java.util.Iterator;
import java.util.Scanner;
class Unit{
int cost ;
Unit(){cost = 0;}
public int getCost(){return cost;}
}
class Engine extends Unit {
Engine(int i){
if(i==1600)
cost=20000;
else
cost= 25000;
}
}
class Aircond extends Unit{
Aircond(String s ) {
if(s.equals("auto"))
cost = 12000;
else
cost = 10000;
}
}
class Sound extends Unit{
Sound(){
cost = 2000;
}
}
abstract class Car{
Engine e;
Aircond a;
Car(int i,String s){
e = new Engine(i);
a = new Aircond(s);
}
public abstract double cost();
public double price(){
return cost() *1.2;
}
}
class BasicCar extends Car{
public BasicCar(int i ,String s ){
super(i,s);
}
public double cost(){
return e.getCost()+a.getCost()+5000;
}
}
class LuxCar extends Car{
public LuxCar(int i ,String s ){
super(i,s);
}
public double cost(){
return e.getCost()+a.getCost()+10000;
}
}
class SLuxCar extends Car{
public SLuxCar(int i ,String s ){
super(i,s);
}
Sound sc = new Sound();
public double cost(){
return e.getCost()+a.getCost()+10000+sc.getCost();
}
}
class Warehouse{
private ArrayList cars;
public void add (Car car){
cars.add(car);
}
public Warehouse(){
cars = new ArrayList();
}
public double TotalCost(){
double i = 0.0;
for(Iterator iterator = cars.iterator();iterator.hasNext();){
Car car = (Car)iterator.next();
i = i + car.cost();
}
return i;
}
public double TotalPirce(){
return TotalCost()*1.2;
}
}
public class JPA06_5 {
public static void main(String args[]) {
Scanner sc = null;
try {
sc = new Scanner(new File("D://wrongdata.txt"));
}catch (FileNotFoundException e) {
System.out.println("File not found!");
System.exit(0);
}
Warehouse wh = new Warehouse();
boolean si = true ;
do{
if(sc.hasNext()) {
String s = sc.next();
int i = sc.nextInt();
String s1 = sc.next();
//利用switch-case來抓取錯誤的資料
switch(s.charAt(0)){
case 'B':
wh.add(new BasicCar(i,s1));
break;
case 'S':
wh.add(new SLuxCar(i,s1));
break;
case 'L':
wh.add(new LuxCar(i,s1));
break;
default://抓到錯誤便顯示出來,不加入倉庫中
System.out.println("Incorect input data : "+s+" "+i+" "+s1);
}
} else {
System.out.println("Total cost: " + wh.TotalCost());
System.out.println("Total price: " + wh.TotalPirce());
si = false;
}
}while(si);
}
}
B 1600 manual
L 2000 auto
S 2000 auto
X 2000 manual


TQC+ JAVA6 試題總覽:LINK
Github 備份:LINK

本篇教學的程式碼皆由筆者編輯,歡迎轉貼本教學,但請全文轉貼,謝啦~

TQC+ JAVA 陣列設計能力 501 ~ 510

TQC+ JAVA6 試題總覽:LINK
Github 備份:LINK

/* TQC+ JAVA6 - 501 */
import java.util.Scanner;
public class JPA501 {
public static void main(String[] args) {
int[] n = new int[10];
Scanner sc = new Scanner(System.in);
int count=0,sum=0;
System.out.println("請輸入10個整數:");
//使用迴圈計算陣列
for(int a=0;a<10;a++) {
System.out.print("第"+(a+1)+"個整數:");
//a變數由迴圈來控制
n[a]=sc.nextInt();
//判斷式,如果大於60,則將此數加入sum
if(n[a]>60) {
count++;
sum+=n[a];
}
}
System.out.printf("陣列中大於60的有%d個\n", count);
System.out.printf("總合為%d\n", sum);
System.out.printf("平均值為%f\n", (double)sum/count);
}
}
/* TQC+ JAVA6 - 502 */
import java.util.Scanner;
public class JPA502 {
public static Scanner keyboard = new Scanner(System.in);
public static void main(String args[]) {
System.out.print("請輸入學生人數:");
Scanner sc = new Scanner(System.in);
int poe = sc.nextInt();
float sum = 0;
float[] ps = new float[poe];
//迴圈次數決定可輸入幾個學生成績,而迴圈次數由使用者輸入
for(int a =0;a<poe;a++){
System.out.print("第"+(a+1)+"個學生的成績:");
ps[a]=sc.nextFloat();
sum +=ps[a];
}
System.out.println("人數:"+poe);
System.out.println("總分:"+sum);
System.out.println("平均:"+sum/poe);
}
}
/* TQC+ JAVA6 - 503 */
public class JPA503 {
final static int ROW = 2;
final static int COL = 3;
public static void main(String args[]) {
int A[][] = {{1,2,3}, {4,5,6}};
int B[][] = {{7,8,9}, {10,11,12}};
int C[][] = new int[ROW][COL];
System.out.printf("陣列A的內容為(3x3):\n");
show(A);
System.out.printf("\n陣列B的內容為(3x3):\n");
show(B);
add(A, B, C);
System.out.printf("\n陣列A+B=C,陣列C的內容為(3x3):\n");
show(C);
}
//相加陣列的方法
public static void add(int[][] A,int[][] B,int[][] C){
//第一個變數和第二個變數為導入方法用,第三個變數則是用來儲存相加後的陣列
for(int b=0;b<2;b++) {
for(int a=0;a<3;a++)
C[b][a]=A[b][a]+B[b][a];
}
}
//陣列顯示方法,透過兩層的for-loop可以將它print出來
public static void show(int[][] s) {
for(int b=0;b<2;b++){
for(int a=0;a<3;a++)
System.out.printf("%02d ",s[b][a]);
System.out.println("");
}
}
}
/* TQC+ JAVA6 - 504 */
public class JPA504 {
public static void main(String[] args) {
int[] n = new int[10];
//初始化前兩個數
n[0]=0;
n[1]=1;
//費式數列前十個
for(int a=2;a<10;a++)
n[a]=n[a-1]+n[a-2];
//陣列的index由2開始,其目的在於相加前面兩個index=1 and 0
for(int a=0;a<10;a++)
System.out.println(n[a]);
}
}
/* TQC+ JAVA6 - 505 */
public class JPA505 {
public static void main(String[] argv) {
String[] data = {"A", "B", "C", "D", "E", "F", "G", "H", "I", "J"};
System.out.print("反轉陣列資料之前: ");
for(int a=0;a<10;a++)
System.out.print(data[a]+" ");
data=reverse(data);
System.out.print("\n反轉陣列資料之後: ");
for(int a=0;a<10;a++)
System.out.print(data[a]+" ");
}
//反轉方法
//其翻轉方法主要是,宣告一個新的陣列,將原陣列寫到暫時的陣列中,並且用倒著的方法來寫,最後將這個暫時的陣列傳回main方法之中
public static String[] reverse(String[] s) {
String[] temp = new String[s.length];
int b=9;
for(int a=0;a<10;a++) {
temp[b]=s[a];
b--;
}
return temp;
}
}
/* TQC+ JAVA6 - 506 */
public class JPA506 {
public static void main(String[] argv) {
int sum =0;
//觀察此三維陣列是由四維包二維再包三維的
int A[][][] = { {{1,2,3}, {4,5,6}},
{{7,8,9}, {10,11,12}},
{{13,14,15},{16,17,18}},
{{19,20,21},{22,23,24}}};
//透過三個for-loop迴圈來相加
for(int a=0;a<4;a++)
for(int b=0;b<2;b++)
for(int c=0;c<3;c++)
sum+=A[a][b][c];
System.out.printf("sum = %d\n", sum);
}
}
/* TQC+ JAVA6 - 507 */
public class JPA507 {
public static void main(String[] argv) {
int hours = 0; //停車時數
hours = 2;
park(hours);
System.out.println("--------------------");
hours = 3;
park(hours);
System.out.println("--------------------");
hours = 5;
park(hours);
System.out.println("--------------------");
hours = 8;
park(hours);
}
//計算停車費用方法
public static void park(int hours) {
int[] hourTable = {0, 2, 4, 6}; //時段陣列
int[] feeTable = {30, 50, 80, 100}; //時段費率陣列
int fee = 0; //總停車費用
System.out.println("停車時數:" + hours + "小時");
for(int a = 3 ;a>=0;a--){
//透過迴圈的方式,使用漏斗的方法,若符合條件則進入if判斷式
if(hours>hourTable[a]){
//計算金額。原本的+(時數-非屬於此時段的時間)*該時段費率
fee=fee+(hours-hourTable[a])*feeTable[a];
//設定剩下的時間
hours=hourTable[a];
}
}
System.out.println("應繳費用:" + fee + "元整");
}
}
/* TQC+ JAVA6 - 508 */
//泡泡排序法
public class JPA508 {
public static void main(String[] args){
int data[] = {2,4,3,5,7,6,9,1};//未排序資料
//先取出陣列長度
int LN = data.length-1;
for(int i=0;i<LN;i++){
for(int j = 0;j<LN;j++){
//如果後面那位數字小於前面那數字則交換
if(data[j]>data[j+1]){
int temp = data[j+1];
data[j+1] = data[j];
data[j] = temp;
}
}
//每做完一次排序,便顯示出結果
for(int x=0;x<=LN;x++)
System.out.print(data[x]+" ");
System.out.println("");
}
}
}
/* TQC+ JAVA6 - 509 */
//選擇排序法
public class JPA509{
static int t = 0;
public static void main(String[] argv) {
int[] data = {1, 3, 2, 5, 4, 6};
sort(data);
}
//設計一個選擇排序法方法
public static void sort(int[] d){
//先取得長度,比較次數為數量-1
int LN = d.length-1;
int i,j,min;
for(i = 0 ; i < LN ; i++){
//先將一開始的位置寫入
min=i;
for(j=(i+1);j<=LN;j++)
if(d[j]<d[min])//如果比較到比它更小的,則將最小的寫入min
min=j;
int temp = d[i];
d[i] = d[min];
d[min]=temp;
for(int k=0;k<=LN;k++)
System.out.print(d[k]+" ");
System.out.println();
}
}
}
/* TQC+ JAVA6 - 510 */
import java.util.Scanner;
public class JPA510 {
public static Scanner targetboard = new Scanner(System.in);
static int time = 0;
public static void main(String[] argv) {
search();
time = 0;
search();
}
//搜尋方法,主要是在做排版的工作
public static void search() {
int[] data = {5, 9, 13, 15, 17, 19, 25, 30, 45}; // 已排序資料
System.out.print("請輸入要找尋的資料:");
int target = targetboard.nextInt();
int ans = binary_search(data,target,data.length);
if(ans==-1)
System.out.println("經過 "+time+" 次的尋找\n"+target+"不在陣列中");
else
System.out.println("經過 "+time+" 次的尋找\n您要的資料在陣列中的第"+ans+"個位置");
}
//二分法搜尋方法,真正在搜尋的地方
//傳入值有三個,陣列,目標值,陣列長度
static int binary_search(int[] data,int target, int max){
int middle, left, right;
left = 0; right = max-1; // 設定啟始搜尋範圍: 左邊界及右邊界(右邊界由最大值減1得到)
while (left <= right){
time++;
middle = (left + right) / 2;// 找出中間位置
System.out.printf("尋找區間: %d(%s)..%d(%s),中間: %d(%s)\n",
left,String.valueOf(data[left]),
right,String.valueOf(data[right]),
middle,String.valueOf(data[middle]));
if (target == data[middle])
return middle; // 找到資料, 傳回找到之位置
// 調整搜尋範圍
if (target < data[middle]) // 往左半邊找 (調整右邊界)
right = middle - 1;
else // 往右半邊找 (調整左邊界)
left = middle + 1;
}
return -1; // 沒找到資料, 傳回 -1
}
}


TQC+ JAVA6 試題總覽:LINK
Github 備份:LINK

本篇教學的程式碼皆由筆者編輯,歡迎轉貼本教學,但請全文轉貼,謝啦~

TQC+ JAVA 遞迴程式設計 401 ~ 410

TQC+ JAVA6 試題總覽:LINK
Github 備份:LINK

/* TQC+ JAVA6 - 401 */
import java.util.Scanner;
public class JPA401 {
static Scanner keyboard = new Scanner(System.in);
public static void main(String args[]) {
//一開始先輸入一個數字
System.out.print("Input n (0<=n<=16):");
int i = keyboard.nextInt();
//只要不等於結束需要的999便可進入迴圈
while(i!=999){
//進入迴圈後再次檢查是否有在0~16的範圍中
if(i<=16&&i>=0)
System.out.println(i+"的階乘 = "+R(i));
//顯示完後,再請使用者輸入一個數字
System.out.print("Input n (0<=n<=16):");
i = keyboard.nextInt();
}
}
//遞迴計算方法
static int R(int i ){
if(i==0)//當傳入為零時,則回傳1
return 1;
else //每次皆會乘上自己的方法,並且傳入i-1的值進入
return i*R(i-1);
}
}
/* TQC+ JAVA6 - 402 */
import java.util.Scanner;
public class JPA402 {
public static void main(String[] args) {
int size = 0;
do{
System.out.print("Input n ( 0 <= n <= 16 ):");
size = new Scanner(System.in).nextInt();
}while(size>16&&size!=999||size<0&&size!=999);
while(size!=999){
//迴圈方法
int L = facLoop(size);
System.out.printf("%d的階乘(迴圈) = %d\n",size,L);
//尾端遞迴
int T = facTail(size,1);
System.out.printf("%d的階乘(尾遞迴) = %d\n",size,T);
do{
System.out.print("Input n ( 0 <= n <= 16 ):");
size = new Scanner(System.in).nextInt();
}while(size>16&&size!=999||size<0&&size!=999);
}
}
//迴圈方法:使用for-loop
public static int facLoop(int a){
int sum = 1;
for(int b=1;b<=a;b++)
sum = b*sum;
return sum;
}
//尾端遞迴:不斷呼叫自己的方法,進行運算
public static int facTail(int a,int b){
if(a==1)
return b;
else
return facTail(a-1,a*b);
}
}
/* TQC+ JAVA6 - 403 */
import java.util.Scanner;
public class JPA403 {
public static void main(String[] args) {
int m ,n;
System.out.print("Input m :");
m = new Scanner(System.in).nextInt();
while(m!=999){
System.out.print("Input n :");
n = new Scanner(System.in).nextInt();
int ans0 = 1;
int ans1 = facTail(m,n,ans0);
System.out.println("Ans(尾端遞迴):"+ans1);
int ans2 = facLoop(m,n);
System.out.println("Ans(迴圈):"+ans2);
System.out.print("Input m :");
m = new Scanner(System.in).nextInt();
}
}
//迴圈
public static int facLoop(int m,int n){
int sum = 1;//累積要初始化為1
for(;n>0;n--)
sum = m*sum;
return sum;
}
public static int facTail(int m,int n,int sum){
if(n==0)
return sum;
else
return facTail(m,n-1, sum*m);
//不斷傳入三個變數,第一個變數用來儲存要乘的數,第二個數用來計算還要乘幾次,第三個數用來累積到目前為止的乘積和
}
}
/* TQC+ JAVA6 - 404 */
import java.util.Scanner;
public class JPA404 {
static Scanner keyboard = new Scanner(System.in);
public static void main(String args[]) {
//先請使用者輸入m值
System.out.print("Input m :");
int m = keyboard.nextInt();
//迴圈判斷,m要不等於999才可進入
while(m!=999){
//進入迴圈後再請使用者輸入n值
System.out.print("Input n :");
int n = keyboard.nextInt();
//進行最大公因數計算
System.out.println(R(m,n));
//迴圈最後在要求使用者輸入下一個迴圈需要的m,若此m在進入下一個迴圈時條件不過,則不進入迴圈了
System.out.print("Input m :");
m = keyboard.nextInt();
}
}
//gcd求最大公因數演算法
static int R(int m,int n){
if(m%n==0)//如果mod為零時,則找到最大公因數,回傳值
return n;
else {//如果mod數不為零時,則把mod得到的數寫入m,再次進行gcd
int tem = n;
n = m%n;
m = tem;
return R(m,n);
}
}
}
/* TQC+ JAVA6 - 405 */
import java.util.Scanner;
public class JPA405 {
static int sum = 0;
public static void main(String[] args) {
System.out.print("Input the number :");
int m = new Scanner(System.in).nextInt();
int ans =sum2(m);
System.out.printf("Ans:%d",ans);
}
//sum2方法,按照題目給的提示,將程式代入即可
public static int sum2(int m) {
if(m==1)
return 2;
else {
//有類似尾端遞迴的概念
sum = sum + sum2(m-1)+2*m;
return sum;
}
}
}
/* TQC+ JAVA6 - 406 */
import java.util.Scanner;
public class JPA406 {
static Scanner keyboard = new Scanner(System.in);
public static void main(String args[]) {
String s;
System.out.print("Input a String :");
s = keyboard.nextLine();
System.out.println(s + " has " + countA(s) + " As");
System.out.print("Input a String :");
s = keyboard.nextLine();
System.out.println(s + " has " + countA(s) + " As");
}
//重點在此計算A個數的方法
public static int countA(String str) {
//當傳入的字串為空字串時,回傳A的數另為0
if(str.equals(""))
return 0;
//擷取字串的第一個字元,如果為A,則加1,並且利用substring讀出位置1之後的所有字串再傳入countA
if(str.substring(0,1).equals("A"))
return 1+countA(str.substring(1));
//如果第一個字串不等於A,直接利用substring讀出位置1之後的所有字串傳入countA
else
return countA(str.substring(1));
}
}
/* TQC+ JAVA6 - 407 */
import java.util.Scanner;
public class JPA407 {
static Scanner keyboard = new Scanner(System.in);
public static void main(String args[]) {
String s;
System.out.print("Input a string of numbers: ");
s = keyboard.nextLine();
System.out.printf("尾端遞迴:%d\n", sumTail(s, 0));
System.out.printf("迴圈:%d\n", sumLoop(s));
System.out.print("Input a string of numbers: ");
s = keyboard.nextLine();
System.out.printf("尾端遞迴:%d\n", sumTail(s, 0));
System.out.printf("迴圈:%d\n", sumLoop(s));
}
//迴圈方法
static int sumLoop(String s) {
int ln = s.length();
int[] num = new int[ln];
for(int i=0;i<ln;i++)
num[i]=Integer.parseInt(s.substring(i, i+1));
int sum =0;
for(int i=0;i<ln;i++)
sum+=num[i];
return sum;
}
//尾端遞迴
static int sumTail(String s,int i){
if(s.equals(""))//如果傳入的字串為空,回傳累加的i值
return i;
else//字串不為空時,則利用substring讀取位置1之後的字串,並傳入
//後面的i值則將字串的第一個字元讀出轉成數字並累加
return sumTail(s.substring(1),i+Integer.parseInt(s.substring(0, 1)));
}
}
/* TQC+ JAVA6 - 408 */
import java.util.Scanner;
public class JPA408 {
static Scanner keyboard = new Scanner(System.in);
public static void main(String args[]) {
String s, c;
System.out.print("Input a string: ");
s = keyboard.nextLine();
System.out.printf("%s\n", reverse(s));
System.out.print("Input a string: ");
s = keyboard.nextLine();
System.out.printf("%s\n", reverse(s));
}
static String reverse(String s )
{
if(s.equals(""))//如果傳入字串為空,則回傳s字串
return s;
else//將字串的第一個字元從後方累加上去,然後傳入的字串則是透過substring讀出位置1之後的所有字串並傳入reverse
return reverse(s.substring(1))+s.substring(0, 1);
}
}
/* TQC+ JAVA6 - 409 */
import java.util.Scanner;
public class JPA409 {
static Scanner keyboard = new Scanner(System.in);
public static void main(String args[]) {
String s, c;
System.out.print("Input a string: ");
s = keyboard.nextLine();
System.out.print("Input a character: ");
c = keyboard.nextLine();
System.out.printf("%s\n", removeChar(s, c));
System.out.print("Input a string: ");
s = keyboard.nextLine();
System.out.print("Input a character: ");
c = keyboard.nextLine();
System.out.printf("%s\n", removeChar(s, c));
}
static String removeChar(String s,String c)
{
if(s.equals(""))//如果傳入的字串為空的話,則回傳空字串
return "";
if(s.substring(0, 1).equals(c))//如果傳入字串的第一個字元等於要刪除的字元
//則利用substring讀取位置1之後的所有字串並再次傳入removeChar
return removeChar(s.substring(1),c);
else//如果不等於要刪除的字元,則補回至原本的字串中
return s.substring(0, 1)+removeChar(s.substring(1),c);
}
}
/* TQC+ JAVA6 - 410 */
import java.util.Scanner;
public class JPA410 {
static Scanner keyboard = new Scanner(System.in);
public static void main(String args[]) {
String s, c1, c2;
System.out.print("Input a string: ");
s = keyboard.nextLine();
System.out.print("Input a character: ");
c1 = keyboard.nextLine();
System.out.print("Input another character: ");
c2 = keyboard.nextLine();
System.out.printf("%s\n", replace(s, c1, c2));
}
static String replace(String s,String c1,String c2){
if(s.equals(""))//如果傳入的字串為空的話,則回傳空字串
return "";
if(s.substring(0, 1).equals(c1))//如果讀出的字元等於要取代的字元,則將新的字元加上去
return c2+replace(s.substring(1),c1,c2);
else//如果不等於的話,補回至原本的字串
return s.substring(0, 1)+replace(s.substring(1),c1,c2);
}
}


TQC+ JAVA6 試題總覽:LINK
Github 備份:LINK

本篇教學的程式碼皆由筆者編輯,歡迎轉貼本教學,但請全文轉貼,謝啦~

TQC+ JAVA 迴圈 301 ~ 310

TQC+ JAVA6 試題總覽:LINK
Github 備份:LINK

/* TQC+ JAVA6 - 301 */
import java.util.*;
class JPA301 {
public static void main(String argv[]) {
System.out.println("Input:");
int tm =new Scanner(System.in).nextInt();
int sum = 0 ;
//從1開始加,且變數會一直+1再加入總和,直到變數大於使用者輸入的數便停止
for (int a=1;a<=tm ; a++) {
sum = sum+a;
}
System.out.printf("1 + ... + %d = %d",tm,sum);
}
}
/* TQC+ JAVA6 - 302 */
import java.util.Scanner;
public class JPA302 {
public static void main(String[] args) {
int i = 1, j = 1, count = 0;
for (i = 1; i <= 3; i++) {//第一個迴圈,i從1到3,執行三圈
for (j = 1; j <= 9; j++)//第一個迴圈,j從1到9,執行九圈
count++;//每跑一次,便+1
}
System.out.printf("count = %d\n", count);
}
}
/* TQC+ JAVA6 - 303 */
public class JPA303 {
public static void main(String[] args) {
int i, j, sum = 0;
System.out.printf("1~1000中的完美數有: ");
for (j=2;j<1000;j++){//第一層迴圈從2跑到1000
sum=0;
for (i=1;i<j;i++) //第二層迴圈從1跑到第一層迴圈的數字便停止
if(j%i==0)//在其中,若有兩數相為j的因數,則將它加入總和中
sum = sum + i;
//若最後的總合等於本身該數,則印出銀幕來
if(sum==j)
System.out.printf("%d ",j);
}
}
}
/* TQC+ JAVA6 - 304 */
import java.util.Scanner;
public class JPA304 {
public static void main(String[] args) {
int total = 0;
int s = 0;
int count =0;
double average;
//先在迴圈外面要求使用這輸入
System.out.print("Please enter meal dollars or enter -1 to stop: ");
s = new Scanner(System.in).nextInt();
//進入迴圈時會檢查,使否符合條件
while(s!=-1){
//進入迴圈後,第一件事便是進行運算
count++;
total = total +s;
//運算完後再次要求使用者輸入
System.out.print("Please enter meal dollars or enter -1 to stop: ");
s = new Scanner(System.in).nextInt();
}
average = (double)total/count;
System.out.println("餐點總費用:" + total);
System.out.printf(" %d 道餐點平均費用為: %.2f %n",count,average);
}
}
/* TQC+ JAVA6 - 305 */
import java.util.Scanner;
public class JPA305 {
static Scanner keyboard = new Scanner(System.in);
public static void main(String[] args) {
test();
test();
test();
}
public static void test() {
System.out.print("Please enter one value:");
Scanner sc = new Scanner(System.in);
int a = sc.nextInt();
int sum=1;
//條件判斷,是否在使用者輸入值1~10之間
if(a>0&&a<=10)
{
//進行階乘運算
for(int t=1 ; t<=a ; t++)
sum = sum*t;
System.out.printf("%d! : %d\n",a,sum);
}
else
System.out.printf("Error, the value is out of range.");
}
}
/* TQC+ JAVA6 - 306 */
import java.util.*;
public class JPA306 {
public static void main (String argv[]){
int num1, num2;
Scanner input = new Scanner(System.in);
//先在迴圈外面請使用者輸入第一個數字
System.out.println("Input:");
num1 = input.nextInt();
//檢查第一個數字是否符合條件
while (num1 != 999) {
//再請使用者輸入第二個數字
num2 = input.nextInt();
System.out.println(powerOf(num1, num2));
//之後再請使用者從頭輸入第一個數字
System.out.println("Input:");
num1 = input.nextInt();
}
}
//N次方運算方法
static int powerOf (int m, int n) {
//因Math.pow()的回傳值為doubel,故結果必須將它強制轉型為int
return (int) (Math.pow(m,n));
}
}
/* TQC+ JAVA6 - 307 */
import java.util.Scanner;
public class JPA307 {
public static void main (String argv[]){
int num1, num2;
//先讓使用者在迴圈外面輸入兩個數字
System.out.println("Input:");
num1 = new Scanner(System.in).nextInt();
num2 = new Scanner(System.in).nextInt();
//若條件不符合便不會進入迴圈
while (num1!=999) {
//一進會迴圈後,會先執行一次gcd方法
System.out.println(gcd(num1,num2));
//使用者再次輸入兩個數字,供下次迴圈判斷
System.out.println("Input:");
num1 = new Scanner(System.in).nextInt();
num2 = new Scanner(System.in).nextInt();
}
}
//gcd求最大公因數演算法
static int gcd (int m, int n) {
int tmp;
while (m % n != 0) {
tmp = n;
n = m % n;
m = tmp;
}
return n;
}
}
/* TQC+ JAVA6 - 308 */
//本題要求使用do-while-loop
import java.util.Scanner;
public class JPA308 {
static Scanner keyboard = new Scanner(System.in);
static int i = -1;
public static void main(String[] args) {
int total = 0, s = 0;
//do-while-loop的特性是部會先檢查條件,一定會先強行執行一次
do {
System.out.print("請輸入消費金額,或輸入-1結束:");
total = total +s;
//因我們是透過使用者輸入-1來判斷結束,所以-1此數值不可加入運算,故將它擺在後頭,使他無作用時
//會直接被條件是擋掉而跳離迴圈
s = new Scanner(System.in).nextInt();
} while(s!=-1);
System.out.print("電腦周邊總消費:" + total);
}
}
/* TQC+ JAVA6 - 309 */
import java.util.Scanner;
class JPA309 {
public static void main(String argv[]){
int size = new Scanner(System.in).nextInt();
int sum = 0;
//累加的迴圈
for(int a=1 ;a<=size;a++) {
//條件判斷,當a整除3或者整除5,則進入處理
if(a%3==0 ||a%5==0) {
//當在此判斷中,符合a整除7的數字,則直接結束該次迴圈以下的所有程式碼,從下一個迴圈開始
if(a%7==0)
continue;
sum = sum +a;
}
}
System.out.println("Answer: " + sum);
}
}
/* TQC+ JAVA6 - 310 */
//此題題目要求使用do-while-loop
import java.util.Scanner;
public class JPA310 {
static Scanner keyboard = new Scanner(System.in);
public static void main(String[] args) {
int init = 2,sum=0;
int size = 0;
//先讓使用者輸入n值
System.out.println("請輸入n的值(n>0,且為偶數):");
size = new Scanner(System.in).nextInt();
//檢查n值是否大於零且為偶數,若不符合便一再重新要求輸入
while(size<=0||size%2!=0) {
System.out.print("請輸入n的值(n>0,且為偶數):");
size = new Scanner(System.in).nextInt();
}
//開始進行累加動作
do{
sum = init +sum;
init += 2;
}while(init<=size);//當累加用的變數大於使用者輸入的值便停止
System.out.printf("%d+%d+...+%d=%d", 2,4,size,sum);
}
}


TQC+ JAVA6 試題總覽:LINK
Github 備份:LINK

本篇教學的程式碼皆由筆者編輯,歡迎轉貼本教學,但請全文轉貼,謝啦~

TQC+ JAVA 條件判斷式 201 ~ 210

TQC+ JAVA6 試題總覽:LINK
Github 備份:LINK

/* TQC+ JAVA6 - 201 */
import java.util.Scanner;
public class JPA201 {
static Scanner keyboard = new Scanner(System.in);
public static void main(String[] args) {
System.out.println("Please enter score");
Scanner sc = new Scanner(System.in);
int a = sc.nextInt();
test(a);
int b = sc.nextInt();
test(b);
}
//建立一個static的方法,來判斷是否有大於60
public static void test(int c) {
if(c>=60)
System.out.println("You Pass");
//以下這行不屬於if的判斷式之內,故無論if是否成立,皆會運作下列該行
System.out.println("End");
}
}
/* TQC+ JAVA6 - 202 */
import java.util.*;
class JPA202{
static Scanner keyboard = new Scanner(System.in);
public static void main(String[] args) {
test();
test();
}
public static void test() {
System.out.println("Input:");
Scanner sc = new Scanner(System.in);
int a,b;
a = sc.nextInt();
b = sc.nextInt();
//建立條件判斷式,結果可能有三種狀況,a>b,a=b,a<b,所以判斷式處理如下
if(a>b)
System.out.printf("%d is larger than %d\n",a,b);
else if(b>a)
System.out.printf("%d is larger than %d\n",b,a);
else
System.out.printf("%d is equal to %d\n",a,b);
}
}
/* TQC+ JAVA6 - 203 */
import java.util.*;
public class JPA203 {
static Scanner input = new Scanner(System.in);
public static void main(String[] args) {
test();
test();
}
static void test() {
System.out.println("Input:");
Scanner sc = new Scanner(System.in);
int a;
a = sc.nextInt();
//要判斷奇偶數,便可用mod2的運算,如果整除2,則mod2=0,視為偶數;反之,mod2=1,沒有整除2,而為奇數
if((a%2)==0)
System.out.printf("The number is even.\n");
else if((a%2)==1)
System.out.printf("The number is odd.\n");
else
System.out.printf("Error!!");
}
}
/* TQC+ JAVA6 - 204 */
import java.util.*;
class JPA204 {
static Scanner input = new Scanner(System.in);
public static void main(String[] args) {
test();
test();
}
public static void test() {
System.out.println("Input:");
Scanner sc = new Scanner(System.in);
int a = sc.nextInt();
//使用and的運算,並且同時符合mod5=0和mod9=0的數字,使得if的判斷式成立
if((a%5)==0 && (a%9)==0)
System.out.printf("Yes\n");
else
System.out.printf("No\n");
}
}
/* TQC+ JAVA6 - 205 */
import java.util.*;
public class JPA205 {
static Scanner input = new Scanner(System.in);
public static void main(String[] args) {
test();
test();
test();
test();
}
//寫一個方法來執行倍數判斷
static void test() {
System.out.println("Enter an integer:");
Scanner sc = new Scanner(System.in);
int a = sc.nextInt();
//先判斷是否是6的倍數,由最大的數開始判斷
if ((a%6)==0)
System.out.printf("%d是2、3、6的倍數\n",a);
//如果不是6的倍數,再判斷是否為2或3的倍數,其中判斷2或3的順序沒有差
else if ((a%2)==0)
System.out.printf("%d是2的倍數\n",a);
else if ((a%3)==0)
System.out.printf("%d是3的倍數\n",a);
else
System.out.printf("%d不是2、3、6的倍數\n",a);
}
}
/* TQC+ JAVA6 - 206 */
import java.util.*;
public class JPA206 {
static Scanner keyboard = new Scanner(System.in);
public static void main(String[] args) {
test();
test();
test();
test();
}
static void test() {
int chi, eng, math;
System.out.print("Input Chinese score:");
chi = keyboard.nextInt();
System.out.print("Input English score:");
eng = keyboard.nextInt();
System.out.print("Input Math score:");
math = keyboard.nextInt();
//使用四個if個別獨立去判斷,個別的分數是否不及格
if(chi<60)
System.out.printf("Chinese failed.\n");
if(eng<60)
System.out.printf("English failed.\n");
if(math<60)
System.out.printf("Math failed.\n");
if(chi>60 && eng>60 && math>60)
System.out.printf("All pass.\n");
}
}
/* TQC+ JAVA6 - 207 */
import java.util.*;
public class JPA207 {
static Scanner keyboard = new Scanner(System.in);
public static void main(String[] args) {
test();
test();
test();
test();
}
static void test() {
System.out.print("請輸入三個整數:");
Scanner sc = new Scanner(System.in);
int[] n= new int[3];
n[0]=sc.nextInt();
n[1]=sc.nextInt();
n[2]=sc.nextInt();
//使用Arrays.sort(n),將陣列中的數字由小排到大
Arrays.sort(n);
//三角形條件判斷,兩個短邊相加大於最大邊,並且其中一邊的數不可為零
if(n[0]+n[1]>n[2]&&n[0]*n[1]*n[2]!=0)
{
//直角三角形:較小的兩邊平方和等於最大邊的平方
if(n[0]*n[0]+n[1]*n[1]==n[2]*n[2])
System.out.print("直角三角形\n");
//鈍角三角形:較小的兩邊平方和小於最大邊的平方
else if(n[0]*n[0]+n[1]*n[1]<n[2]*n[2])
System.out.print("鈍角三角形\n");
//銳角三角形:較小的兩邊平方和大於最大邊的平方
else if(n[0]*n[0]+n[1]*n[1]>n[2]*n[2])
System.out.print("銳角三角形\n");
}
//若無法構成三角形則進入此判斷式
else
System.out.print("不可以構成三角形\n");
}
}
/* TQC+ JAVA6 - 208 */
import java.util.*;
class JPA208 {
static Scanner keyboard = new Scanner(System.in);
public static void main(String[] args) {
test();
test();
test();
test();
test();
}
//建立分數判斷的方法,在main方法中,宣告五次,便執行五次
public static void test() {
System.out.println("Input:");
Scanner sc = new Scanner(System.in);
int a = sc.nextInt();
//使用條件判斷式,"if" "else if" "else",因為一定只能符合其依規則,不能用多個if來判斷
//這邊使用漏斗的寫法,如果沒有大於等於90那該數一定小於90往下繼續執行,那底下便只需寫判斷大於等於80即可,不用再判斷是否小於90
if(a>=90)
System.out.printf("Your grade is A\n");
else if(a>=80)
System.out.printf("Your grade is B\n");
else if(a>=70)
System.out.printf("Your grade is C\n");
else if(a>=60)
System.out.printf("Your grade is D\n");
else if(a<60)
System.out.printf("Your grade is F\n");
}
}
/* TQC+ JAVA6 - 209 */
import java.util.*;
public class JPA209 {
static Scanner keyboard = new Scanner(System.in);
public static void main(String[] args) {
test();
test();
test();
test();
}
public static void test() {
Scanner sc = new Scanner(System.in);
double x,y;
System.out.print("請輸入 x 座標:");
x = sc.nextDouble();
System.out.print("請輸入 y 座標:");
y = sc.nextDouble();
if(x==0.0&&y==0.0)
System.out.printf("(%1.2f,%1.2f)在原點上\n",x,y);
else if (x==0.0)
System.out.printf("(%1.2f,%1.2f)在y軸上\n",x,y);
else if (y==0.0)
System.out.printf("(%1.2f,%1.2f)在x軸上\n",x,y);
else if (x>0.0&&y>0.0)
System.out.printf("(%1.2f,%1.2f)在第一象限上\n",x,y);
else if (x<0.0&&y>0.0)
System.out.printf("(%1.2f,%1.2f)在第二象限上\n",x,y);
else if (x<0.0&&y<0.0)
System.out.printf("(%1.2f,%1.2f)在第三象限上\n",x,y);
else if (x>0.0&&y<0.0)
System.out.printf("(%1.2f,%1.2f)在第四象限上\n",x,y);
}
}
import java.util.*;
class JPA210 {
static Scanner keyboard = new Scanner(System.in);
public static void main(String[] args) {
test();
test();
test();
test();
test();
}
public static void test() {
System.out.println("Input a character:");
Scanner sc = new Scanner(System.in);
//讀取字串
String tm = sc.next();
//僅擷取自串的第一個字元
char tm0 = tm.charAt(0);
switch(tm0) {
case 'a'://這邊不需要特別去處理,因為沒有寫break,所以會繼續跑到case 'B'的內容,直到碰到break
case 'b':
System.out.println("You entered a or b");
break;
case 'x':
System.out.println("You entered x");
break;
case 'y':
System.out.println("You entered y");
break;
default:
System.out.println("You entered something else.");
break;
};
}
}


TQC+ JAVA6 試題總覽:LINK
Github 備份:LINK

本篇教學的程式碼皆由筆者編輯,歡迎轉貼本教學,但請全文轉貼,謝啦~

TQC+ JAVA 基本認識 101 ~ 110

TQC+ JAVA6 試題總覽:LINK
Github 備份:LINK

/* TQC+ JAVA6 - 101 */
//程式中四處錯誤之處,建議將其全部刪除,整個重寫即可
public class JPA101 {
public static void main (String[] args) {
System.out.println("I love Java!");
System.out.println("Java is so good!");
}
}
/* TQC+ JAVA6 - 102 */
import java.util.Scanner;
public class JPA102 {
public static void main (String[] args) {
System.out.println("Please input:");
//使用Scanner這個方法來讀取鍵盤輸入
double k = new Scanner(System.in).nextDouble();
System.out.println(k+" kg = "+ (k*2.20462) + " ponds");
}
}
/* TQC+ JAVA6 - 103 */
import java.util.Scanner;
public class JPA103 {
public static void main (String[] args) {
System.out.println("Please input:");
Scanner sc = new Scanner(System.in);
//Scanner在讀取的時候會以空白為區隔
int a,b,c;
a=sc.nextInt();
b=sc.nextInt();
c=sc.nextInt();
//這邊記得要將三個變數之和強制轉型成double,這樣除出來的數字才會是浮點數
System.out.printf("Average: %4.2f",((double)(a+b+c)/3));
}
}
/* TQC+ JAVA6 - 104 */
import java.util.Scanner;
public class JPA104 {
public static void main (String[] args) {
Scanner sc = new Scanner(System.in);
double x1,x2,y1,y2;
System.out.print("輸入第1組的x和y座標:");
x1 = sc.nextDouble();
y1 = sc.nextDouble();
System.out.print("輸入第2組的x和y座標:");
x2 = sc.nextDouble();
y2 = sc.nextDouble();
//printf的用法是是顯示出一串字串,而字串中會有一些變數可帶入,例如%d 就是帶入整數,%f就是帶入浮點數,而%4.2f是指全部的位數有四位(包含小數點),而小數點後面佔兩位
//不過如果輸出的為數大於使用者輸出的,則會忽略使用者所輸入的位數限制
//Math.sqrt(X) = X開根號
//Math.pow(2.0,3.0) = 二的三次方,其中兩個變數皆是double形式
System.out.printf("介於(%4.2f,%4.2f)和(%4.2f,%4.2f)之間的距離是%4.2f", x1,y1,x2,y2,(Math.sqrt(Math.pow((x2-x1),2) + Math.pow((y2-y1),2))));
}
}
/* TQC+ JAVA6 - 105 */
import java.util.Scanner;
public class JPA105 {
public static void main (String[] args) {
System.out.print("請輸入您的姓名:");
Scanner sc = new Scanner(System.in);
String name = sc.next();
System.out.printf("Hi, %s,請輸入您的銅板的個數:\n",name);
System.out.print("請輸入1元的數量:");
int n1 = sc.nextInt();
System.out.print("請輸入5元的數量:");
int n5 = sc.nextInt();
System.out.print("請輸入10元的數量:");
int n10 = sc.nextInt();
System.out.print("請輸入50元的數量:");
int n50 = sc.nextInt();
int sum,G1,G2,G3,G4;
sum = n1*1 + n5*5 + n50*50 +n10*10;
//將總金額除以1000,小數點前面僅剩千位數這個數,並由浮點數存至整數,後面小數點皆會消失
G1 = sum/1000;
//將總金額除以100,小數點前面僅剩千位數和百位數這兩數,再進行mod運算,除以10所餘的數,這樣便僅會存在百位數
G2 = (sum/100)%10;
//將總金額除以10,小數點前面僅剩千位數和百位數和十位數這三數,再進行mod運算,除以10所餘的數,這樣便僅會存在十位數
G3 = (sum/10)%10;
//將總金額進行mod運算,除以10所餘的數,這樣便僅會存在個位數
G4 = sum%10;
System.out.printf("您的錢總共有: %d 千 %d 百 %d 十 %d 元",G1,G2,G3,G4);
}
}
/* TQC+ JAVA6 - 106 */
public class JPA106 {
public static void main (String[] args) {
double x;
x = -3.2;
System.out.printf("f(%.1f) = %4.4f\n",x,f(x));
x = -2.1;
System.out.printf("f(%.1f) = %4.4f\n",x,f(x));
x = 0;
System.out.printf("f(%.1f) = %4.4f\n",x,f(x));
x = 2.1;
System.out.printf("f(%.1f) = %4.4f\n",x,f(x));
}
static double f(double d) {
return (3*(Math.pow(d, 3))+2*d-1);
}
}
/* TQC+ JAVA6 - 107 */
public class JPA107 {
public static void main(String argv[]) {
int action = 1, skill = 2, teamgame = 3;
System.out.println("The basketball grade is " + Basketball.calGrade(action,skill,teamgame));
System.out.println("The baseball grade is " + Baseball.calGrade(skill,teamgame));
}
}
//建立一個class
class Basketball {
//在裡面再建立一個方法,並宣告成static
public static int calGrade(int a,int s,int t) {
return a + s + t;
}
}
class Baseball {
public static int calGrade(int s,int t) {
return 10 + s + t;
}
}
/* TQC+ JAVA6 - 108 */
public class JPA108 {
public static void main (String[] args) {
int i = add(2, 3);
double d = add(5.2, 4.3);
String s = add("I love ", "Java!!");
System.out.printf("%d %f %s %n", i, d, s);
}
public static int add(int a, int b) {
System.out.printf("Adding two integer: %d , %d \n",a,b);
return (a+b);
}
public static double add(double a, double b) {
System.out.printf("Adding two doubles: %2.1f , %2.1f \n",a,b);
return (a+b);
}
public static String add(String a, String b) {
System.out.printf("Adding two strings: %s, %s \n",a,b);
return (a+b);
}
}
/* TQC+ JAVA6 - 109 */
public class JPA109 {
public static int adder (int s1, int a1, int e1) {
//傳回加總後的數值回去,先傳到gameRating這個方法,再由gameRating傳回至main中
return (s1+a1+e1);
}
public static int gameRating (int s, int a, int e) {
//再將剛剛傳進來的傳入到adder這個方法中
return adder(s,a,e);
}
public static void main (String argv[]) {
int skill = 6, action = 9, excitment = 8, result;
//將數字傳入gameRating這個方法中
result = gameRating(skill, action, excitment);
System.out.print("The rating of the game is ");
System.out.println(result);
}
}
/* TQC+ JAVA6 - 110 */
public class JPA110 {
public static void main(String args[]) {
double totalarea;
System.out.printf("圓形面積為:%f \n",calCircle(5));
System.out.printf("三角形面積為:%f \n",calTriangle(10,5));
System.out.printf("方形面積為:%f \n",calRectangle(10,5));
totalarea = calCircle(5) + calTriangle(10,5) + calRectangle(10,5) ;
System.out.printf("此圖形面積為:%f \n",totalarea);
}
//宣告一個計算圓面積的方法
public static double calCircle(int a) {
return (a*a*3.1415926);
}
//宣告一個計算三角形面積的方法
public static double calTriangle(int a,int b) {
//記得要將a*b的乘積強制轉型成double,這樣除出來數字才會保留小數部分
return ((double)(a*b)/2);
}
//宣告一個計算長方形面積的方法
public static double calRectangle(int a,int b) {
return (a*b);
}
}


TQC+ JAVA6 試題總覽:LINK
Github 備份:LINK

本篇教學的程式碼皆由筆者編輯,歡迎轉貼本教學,但請全文轉貼,謝啦~

2013年2月7日 星期四

[Android] 蘑菇栽培,只需一天?

在前一陣子,很紅的一套APP遊戲,「觸摸偵探 菇菇栽培研究室(Mushroom Garden)」,這個遊戲就是花時間在等待菇菇的成長。但如果想一日就培養完所有蘑菇呢?照遊戲的設定與時間來講,應該是不可能的,但是仍是有些小技巧可以作弊 =___=



APP名稱:觸摸偵探 菇菇栽培研究室
費用:免費應用程式
Google Play 資訊:連結

第一步:先把該種的香菇種好(在這邊,我們以種植1hr的0元香菇作範例)





















第二步:到應用程式管理那邊,我們去把這個程式,強制停止







第三步:到時間那邊,調整時間,把原本從網路校正時間,改成手動調整時間




















第四步:回到遊戲去收成了喔~~




















原理的話:(有興趣再看看吧!!)

這支程式裡面應該是有用到service或者是thread在背景執行程式(主要是計算時間),而蘑菇的成長時間,主要是透過抓取系統時間(getTime()的方法之類的)來計算中間的差,是否有達到成長時間。

而我們將程式強制停止(那些背景跑的程式會被關閉),則進入遊戲時需要重新再去抓一次現在的時間(時間又被我們改過了),才能去計算,與上次紀錄的時間是否有到達成長時間。

所以其實只要重複以上的步驟,蘑菇其實很快就種完了= ="

就因人而異吧~看是要慢慢的觀察他的成長日記,還是想要一日養成計畫~哈哈!!