對於一個任務,我必須寫這樣的代碼:掃描儀輸入錯誤
import java.util.Scanner;
public class Words {
public static void main(String[] args) {
//Display welcome message
System.out.println("Welcome to the String Function Event!");
Scanner userInput = new Scanner(System.in);
String result1;
System.out.print("Please input the first word:");
result1=userInput.next();
String result2;
System.out.print("Please input the second word:");
result2=userInput.next();
System.out.println("The words you chose are " +result1+ " and " +result2+ ".");
}
}
當我嘗試編譯它,它給了我在說「不能解析符號,符號的命令提示符下3個錯誤:類掃描儀,位置:class Words,Scanner userInput = new Scanner(System.in)「。我不確定錯誤在哪裏。 我應該使用BufferedReader作爲輸入嗎?
您正在使用哪個版本的JDK?掃描儀被引入1.5(這是相當古老) – SJuan76
程序看起來很好我 – exexzian
@ SJuan76哦!我剛剛檢查過我的。它是1.4.6,這解釋了它。我會得到最新版本並試用。謝謝!我不知道! – Salma