Question: Write a program that repeatedly reads in integers from input until a negative integer is read. You should not prompt for these numbers; we ll
Write a program that repeatedly reads in integers from input until a negative integer is read. You should not prompt for these numbers; well assume the user knows what to do
The program must also keep track of the largest integer that has been read so far and outputs the largest integer at the end.
The output message should be as follows:
The largest number was: largest number
Ex: If the input is:
the output is:
The largest number was:
You can assume a user will enter at least one positive integer or the number zero before a negative integer.
The only output should be the largest number
Test your program using many different amounts of input with the Try It button.
Hint: Think of what you need to keep track of The current number input, and the largest number input. If the current number is larger than the largest, what is the new largest value? If the current input number is negative, should you continue your program?
TRY IT
When you are satisfied that your program works with all kinds of potential inputs, use the Check It button to submit it for grading. You have unlimited attempts.
Step by Step Solution
There are 3 Steps involved in it
1 Expert Approved Answer
Step: 1 Unlock
Question Has Been Solved by an Expert!
Get step-by-step solutions from verified subject matter experts
Step: 2 Unlock
Step: 3 Unlock
