import java.util.Scanner;
public class a001{
public static void main(String stgs[]){
Scanner sc = new Scanner(System.in);
String s;
while (sc.hasNext()) {
s = sc.nextLine();
System.out.println("hello, " + s);
}
}
}
失敗測資:
import java.util.*;
public class a001{
public static void main(String stgs[]){
while(true){
Scanner sc = new Scanner(System.in);
String s = sc.nextLine();
System.out.println("hello, "+s);
}
}
}
NA:
第 1 測資點(20%): RE (code:1)
執行時期錯誤
您的程式被監控系統中斷,可能是程式無法正常結束所導致。 Exception in thread "main" java.util.NoSuchElementException: No line found at java.util.Scanner.nextLine(Scanner.java:1585) at code_2441285.main(code_2441285.java:6)
第 2 測資點(80%): RE (code:1)
執行時期錯誤
您的程式被監控系統中斷,可能是程式無法正常結束所導致。 Exception in thread "main" java.util.NoSuchElementException: No line found at java.util.Scanner.nextLine(Scanner.java:1585) at code_2441285.main(code_2441285.java:6)
網路提供的解答:
http://codex.wiki/question/1885289-3312
沒有留言:
張貼留言