- ベストアンサー
エラーの訂正でアドバイスください。
javaプログラミング超初心者です import java.io.*; public class ex22b { public static void main(String[] arg) { System.out.print("x: "); int x = (new Integer (in.readLine())). intValue(); System.out.print("y: "); int y = (new Integer (in.readLine())). intValue(); int a; while (y > 0) { a = a + x; System.out.println("kekka = " + a); System.out.println("y = " + y); y = y - 1; } System.out.println("乗算結果は " + a); } } というソースを書いたら、コンパイルの際に シンボルを見つけられません シンボル:変数 in 場所 :ex22bのクラス int x = (new Integer (in.readLine())). intValue(); ^ int y = (new Integer (in.readLine())). intValue(); ^ というエラーが出ました。 どこをどう直したらいいのでしょうか。
- みんなの回答 (3)
- 専門家の回答