2012-02-12 39 views
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)); 
    } 
} 

答えて

1

あなたはkeyBoardという名前の変数を作成し、変数keyBoardを使用してみてください前に新しいScannerオブジェクトに割り当てる必要があります。

Scanner keyBoard = new Scanner(System.in); 
+0

良い仕事を!ありがとう! – ultra99

関連する問題