こんにちは、私は Java プログラミングが初めてで、変数の変更に取り組んでおり、少し助けを求めています。質問は以下です。
ユーザーに 3 つの数字を要求し、それらの合計を出力するプログラムを作成します。プログラムで次の構造を使用します。
// TODO code application logic here
Scanner reader = new Scanner(System.in);
int sum = 0;
int read;//`enter code here`
// WRITE YOUR PROGRAM HERE
// USE ONLY THE VARIABLES sum, reader AND read!
System.out.println("Sum: " + sum);
これは私が以下に書いたもので、もちろん構文エラーが発生しています:
Scanner reader = new Scanner(System.in);
int sum = 0;
System.out.print("Type the first Number: ");
int read = Integer.parseInt(reader.nextLine());
System.out.print("Type the second number: ");
int read = read + (Integer.parseInt(reader.nextLine()));
System.out.print("Type the third number: ");
int read = read + (Integer.parseInt(reader.nextLine()));
sum = read;
System.out.println("Sum: " + sum);