-1
好吧,這是我的代碼到目前爲止,我真的需要幫助,使其退出後,我輸入退出,也爲程序不鍵入一個字符串後結束。任何幫助或鏈接到一些幫助將不勝感激我是一個非常新手的程序員。如何讓我的程序在進入退出後退出
import java.util.Scanner;
import java.io.*;
public class reverse
{
public static void main(String [] args)
{
String input = null;
Scanner keyboard = new Scanner(System.in);
System.out.print("Please enter a string for reversal or type QUIT to exit: ");
input = keyboard.nextLine();
if(input.equals("quit"))
{
//close the program
}
Reverser(input, (input.length() - 1));
System.exit(0);
}
public static void Reverser(String str, int size)
{
if(size>=0)
{
System.out.print(str.charAt(size));
Reverser(str,size-1);
}
}
}
將'System.exit(0);'移至'if'條件。 –
DANG,工作idk爲什麼我想離開它 – akay
如果你希望你的程序能夠接受多個字符串,你最好學習循環:'for'循環,'while循環和'do .. .while'循環。閱讀關於他們[這裏](http://docs.oracle.com/javase/tutorial/java/nutsandbolts/while.html)和[here](http://docs.oracle.com/javase/tutorial/java/對於初學者來說,nutsandbolts/for.html)。 –