本帖最後由 李泳霖 於 2022-12-28 18:01 編輯
題目說明:
請將檔案另存成JPA04.java,並編譯為JPA04.class
設計說明:
1.請使用遞迴設計一個類別方法,此方法能夠將一個字串內的某個字元移除。
2.程式執行時,顯示[Input a string: ]要求輸入字串。
3.輸入完畢,顯示[Input a character: ]要求輸入[欲移除]的字元。
4.連續執行兩次,顯示如執行結果參考畫面,將字元從字串中移除。
- import java.util.Scanner;
- public class JPD04 {
- 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));
- }
-
- ...
- }
複製代碼本帖隱藏的內容需要回復才可以瀏覽 |