割り当てのために、私はこのコードを書かなければなりません:
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+ ".");
}
}
コンパイルしようとすると、コマンド プロンプトに「シンボルを解決できません。シンボル: クラス スキャナ、場所: クラス ワード、スキャナ userInput=new Scanner(System.in)」という 3 つのエラーが表示されます。エラーがどこにあるのかわかりません。代わりに、入力に BufferedReader を使用する必要がありますか?