Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

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:
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?

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Moving Objects Databases

Authors: Ralf Hartmut Güting, Markus Schneider

1st Edition

0120887991, 978-0120887996

Students also viewed these Databases questions

Question

How wide are Salary Structure Ranges?

Answered: 1 week ago