本帖最後由 李泳霖 於 2023-3-4 15:45 編輯
TQC+ 108
1.請在同一個類別中,使用覆載(OverLoad)撰寫三個同樣名為add的方法
2.宣告main方法,分別提供以下a、b、c等參數
a. add(2,3);
b. add(5.2,4.3);
c. add("I love","Java");
3.方法一: 傳入兩個整數(int,int),計算兩整數的和(int)。程式執行時,列出[Adding two integers: i,j],請呼叫main方法中的add(2,3)將參數代入i,j內。
方法二: 傳入兩個浮點數(double,double),計算兩個浮點數的和(double)。程式執行時,列出[Adding two doubles: i,j],請呼叫main方法中的add(5.2,4.3)將參數代入i,j內。
方法三: 傳入兩個字串(String,String),計算合併後兩個字串(String)。程式執行時,列出[Adding two strings: i,j],請呼叫main方法中的add("I love","Java!!")將參數代入i,j內。
- class JPD01 {
-
- ...
-
- 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);
- }
- }
複製代碼 TQC+ 206
1.請撰寫一個能輸入國文、英文、數學三科分數的程式
2.程式執行時,如執行結果參考畫面,畫面顯示[Input Chinese score:],請使用者輸入國文分數,再分別依序要求輸入英文、數學的分數。
3.將此三個分數分別存入變數之中,再判斷是否有任何一科不及格,如果有任何一科不及格,則輸出該科不及格,分別顯示[科目+failed.]:如果全部都及格,則輸出全部通過,顯示[ALL Pass.]
4.重複執行四次,顯示如執行結果參考畫面
- import java.util.*;
- public class JPD02 {
- static Scanner keyboard = new Scanner(System.in);
- public static void main(String[] args) {
- test();
- test();
- test();
- test();
- }
-
- static void test() {
- int chi, eng, math, avg;
- 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();
-
- ...
- }
- }
複製代碼 TQC+ 308
題目說明:
請將檔案另存成JPA03.java,並編譯為JPA03.class
設計說明:
1.David到某商場為公司購買一系列的電腦週邊設備,請以do-while計算此次購買的總費用,使「電腦週邊費用總計」程式正常執行。
2.do-while的最大特點為:其內的statement至少會被執行一次。do-while的語法如下:
3.程式執行時,如執行參考畫面,畫面顯示[請輸入消費金額,或輸入-1結束:],請使用者輸入第一項消費金額,再分別依序要求輸入費用。最後輸入-1。
4.當使用者輸入-1,即停止執行程式計算,並如執行參考畫面,輸出電腦週邊總消費的總合。
- import java.util.Scanner;
- public class JPD03 {
- static Scanner keyboard = new Scanner(System.in);
- static int i = -1;
- public static void main(String[] args) {
- int total = 0, s = 0;
-
- ...
- }
- }
複製代碼 TQC+ 410
題目說明:
請將檔案另存成JPA04.java,並編譯為JPA04.class
設計說明:
1.請使用遞迴設計一個類別方法,此方法能夠將一個字串內的某個字元換成另一個字元。例如輸入字串[windows],將字串中的w值替換成g值,輸出字串為[gindogs]。
2.程式執行時,顯示[Input a string: ]要求輸入字串,接續顯示[Input a character: ] 要求輸入[被替換]的字元,最後顯示[Input another character: ]要求輸入替換字元。
3.請利用replace()函數進行字串替換,顯示如執行結果參考畫面。
- import java.util.Scanner;
- public class JPD04 {
- 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));
- }
-
- ...
- }
複製代碼 /*
replace("windows","w","g")
="g"+replace("indows","w","g")
="g"+"i"+replace("ndows","w","g")
="g"+"i"+"n"+replace("dows","w","g")
="g"+"i"+"n"+"d"+replace("ows","w","g")
="g"+"i"+"n"+"d"+"o"+replace("ws","w","g")
="g"+"i"+"n"+"d"+"o"+"g"+replace("s","w","g")
="g"+"i"+"n"+"d"+"o"+"g"+"s"+replace("","w","g")
="g"+"i"+"n"+"d"+"o"+"g"+"s"+""
=gindogs
*/
TQC+ 504
1.題目說明:
請將檔案另存成JPA05.java,並編譯為JPA05.class
2.設計說明:
(1)費式數(Fibonacci sequence)可使用於建築設計,費式數列為0、1、1、2、3、5、8、13、21、34、55、...,第一個數為0,第二個數為1,其它的數為前面兩個數的和。
(2)請使用陣列方式寫出費式數0、1、1、2、3、5、8、13、21、34的程式。
(3)請事先宣告一個大小為10的整數陣列,將前面二個陣列指定費式數的初始值,並利用初始值來計算其餘的費式數。
(4)以分行方式,顯示此費式數的前10個數值。
- import java.util.Scanner;
- public class JPD05 {
- public static Scanner keyboard = new Scanner(System.in);
-
- public static void main(String[] argv) {
-
-
-
-
-
- }
- }
複製代碼 |