Question: Find largest number Description Write a program that repeatedly reads in integers from input until a negative integer is read. You should not prompt for

Find largest number
Description
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:
2
77
17
4
-1
the output is:
The largest number was: 77
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 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!