Question: What is the sentinel value in the following code snippet? public static void main ( String [ ] args ) { int age = 0

What is the sentinel value in the following code snippet?
public static void main(String[] args)
{
int age =0;
int sumOfAges =0;
int stop =1;
Scanner reader = new Scanner(
System.in);
System.out.println("Enter an age (-1 to stop): ");
age = reader . nextInt () ;
while (age !=-1)
{
sum0fAges = sum0fAges + age;
System.out.println("Enter an age (-1 to stop): ");
age = reader. nextInt () ;
}
System.out.println("Sum of ages "+ sumOfAges);
return 0 ;
}
2
1
-1
0
 What is the sentinel value in the following code snippet? public

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 Databases Questions!