TQC106
假設有一數學函數 f(x)=3(x^3)+2x-1
請撰寫一函數 f 來回傳 f(x) 的值, 取至小數後第四位, 參考執行畫面如下:
TQC206
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();
-
- ...
- }
- }
複製代碼 TQC306
題目說明:
請將檔案另存成JPA03.java,並編譯為JPA03.class
設計說明:
1.請設計一程式,持續輸入兩整個數m、n,m與n中間以空格鍵分隔,並以一個類別方法及while loop計算m的n次方,直到輸入m=999為止。
2.顯示如執行結果參考畫面。
100的7次方屬於溢位(overflow)- import java.util.*;
- public class JPD03 {
- 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));
- ...
- }
- }
- static int powerOf (int m, int n) {
- ...
- }
- }
複製代碼 TQC406
題目說明:
請將檔案另存成JPA04.java,並編譯為JPA04.class
設計說明:
1.請使用遞迴撰寫一個類別方法,可計算一個字串內有幾個A,大小寫有所區別。
2.程式執行時,顯示[Input a string: ]要求輸入字串。
3.連續執行兩次,如執行結果參考畫面,顯示[輸入的字串 has X As]。將計算此字串內有幾個A,代入X中
- import java.util.Scanner;
- public class JPD04 {
- static Scanner keyboard = new Scanner(System.in);
- public static void main(String args[]) {
-
- ...
- }
-
- public static int countA(String str) {
-
- ...
-
- }
- }
複製代碼 TQC506
1.題目說明:
請將檔案另存成JPA05.java,並編譯為JPA05.class
2.設計說明:
(1)設陣列A的維度為4*2*3,試在程式碼裡宣告此一陣列,並在宣告同時設定初值,然後計算陣列A內的所有元素總和(SUM)。
(2)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}}};
- public class JPD05 {
- 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}}};
-
-
-
- System.out.printf("sum = %d\n", sum);
- }
- }
複製代碼 |