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
i need help with while loop
i need help with while loop
Aug 3, 2012 at 1:31pm UTC
dustyperez
(4)
Ok so I need to create a string data while loop that just repeats what you type.But I need it to only loop a certain number of times. like say 8 times I have no idea how to set the number of times it loops. Thanks guys, your a big help
Aug 3, 2012 at 1:53pm UTC
cnoeval
(643)
Handled here:
http://cplusplus.com/forum/beginner/76486/
Aug 3, 2012 at 3:18pm UTC
Silvestar
(106)
1
2
3
4
5
int
N=0;
while
(N<8){ N++;
// do stuff here
}
here
Topic archived. No new replies allowed.