cplusplus
.com
TUTORIALS
REFERENCE
ARTICLES
FORUM
C++
Tutorials
Reference
Articles
Forum
Forum
Beginners
Windows Programming
UNIX/Linux Programming
General C++ Programming
Lounge
Jobs
Forum
Beginners
writting a while loop
writting a while loop
Apr 26, 2012 at 10:44pm UTC
PALTIOUS
(5)
how to Write a while loop that determines the biggest number of positive integers. The input list ends with 0 or any negative number? just need an example.
Apr 26, 2012 at 11:32pm UTC
vlad from moscow
(6539)
while ( ( std::cin >> number ) && ( 0 < number ) )
{
....
}
Topic archived. No new replies allowed.