Question: Determine logic/ compile and syntax error in the following statement Scanner input = new Scanner(System.in); int sum = 0; System.out.println(Enter an integer + (the

Determine logic/ compile and syntax error in the following statement

Scanner input = new Scanner(System.in);

int sum = 0;

System.out.println("Enter an integer " + "(the input ends if it is 0)");

int number = input.nextInt();

while (number != 0) {

sum += number;

System.out.println("Enter an integer " + "(the input ends if it is 0)");

number = input.nextInt();

}

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Programming Questions!