Programming logic and design
INTRODUCTION:
Use only Flowgorithm software. (Please respond only if you use the flowgorithm..... ) Flowcharting program flowgorithm....
This project uses loops, as described in Chapter 5 of the textbook.
ASSIGNMENT: This assignment is Programming Exercise 10 (Largest and Smallest) on page 226 in Chapter 5 of the textbook.
Your program will: Largest and smallest. Design a program with loop that let the user enter a series of numbers.
The user should enter -99 to signal the end of series. After all the numbers, have been entered, the program should display the largest and the smallest numbers entered.
•Use a loop to ask for numbers, until the value -99 is entered
•Compare each number to the current maximum and minimum
•After -99 is entered, the program displays the largest and smallest numbers entered.
NOTES:
1) Your output should be in a sentence, like, "The largest number entered is XXX".
2) Make sure your program is working correctly.