本帖最後由 李泳霖 於 2022-9-17 13:38 編輯
題目說明:
請將檔案另存成JPA04.java,並編譯為JPA04.class
設計說明:
1.請使用遞迴設計一個類別方法,此方法能夠將字串反向。
2.程式執行時,顯示[Input a string: ]要求輸入字串。
3.連續執行兩次,如執行結果參考畫面將字串反向印出。
/*
reverse("hello")
=reverse("ello")+"h"
=reverse("llo")+"e"+"h"
=reverse("lo")+"l"+"e"+"h"
=reverse("o")+"l"+"l"+"e"+"h"
=reverse("")+"o"+"l"+"l"+"e"+"h"
=""+"o"+"l"+"l"+"e"+"h"
="olleh"
*/- 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.printf("%s\n", reverse(s));
- System.out.print("Input a string: ");
- s = keyboard.nextLine();
- System.out.printf("%s\n", reverse(s));
- }
-
- ...
- }
複製代碼 |