cplusplus
.com
TUTORIALS
REFERENCE
ARTICLES
FORUM
C++
Tutorials
Reference
Articles
Forum
Forum
Beginners
Windows Programming
UNIX/Linux Programming
General C++ Programming
Lounge
Jobs
Forum
General C++ Programming
How to Create a C++ program
How to Create a C++ program
Sep 27, 2012 at 1:39am UTC
John1234567890
(1)
Write a program that reads in positive integers until the user enters a 0 to signal end of input. The program should then print the smallest and largest of the positive integers entered.
I have no clue how to start this, please help me
Sep 27, 2012 at 2:00am UTC
TheJJJunk
(181)
Use a while loop
while
(input != 0)
Topic archived. No new replies allowed.