0
私はこのコードを持っていて、それをコンパイルしようとしました。しかし、それは私に与えたエラー:シンボルを見つけることができません。シンボル:変数keyBoard
error: cannot find symbol
anotherEntry = keyBoard.nextInt();
symbol: variable keyBoard
location: class DemoVariables3
何か手がかりは何ですか?
コード:
import java.util.Scanner;
public class DemoVariables3
{
public static void main(String[] args)
{
int entry;
int anotherEntry;
System.out.print("Enter another integer ");
anotherEntry = keyBoard.nextInt();
System.out.print("The other entry is ");
System.out.println(anotherEntry);
System.out.println(entry + "plus" +
anotherEntry + "is" + (entry + anotherEntry));
}
}
良い仕事を!ありがとう! – ultra99