小弟是新手 不曉得程式碼哪裡寫錯了 一直無法通過測試
import java.util.Scanner;
public class hello {
public static void main(String[] args){
Scanner scanner = new Scanner(System.in);
while(true)
{
String string = scanner.nextLine();
switch(string){
case "world": System.out.println("hello, world"); break ;
case "C++": System.out.println("hello, C++"); break;
case "mary": System.out.println("hello, mary"); break;
}
}
}
}
一直說監控程式被中斷 請問是甚麼意思壓 我在自己的電腦上是可以執行的
一直說監控程式被中斷 請問是甚麼意思壓 我在自己的電腦上是可以執行的
應該是while沒有停止條件
沒有nextLine時要設break