now i know how to run the program of while loop.But i have a problem in getting while loop using three counter
miyumi 0 Newbie Poster
Recommended Answers
Jump to PostPlease post an example of what you are trying to do
Jump to Postsomething like this:
#include <iostream> int main() { int counterone = 0, countertwo = 3, counterthree = 54; bool runloop = true; while(runloop == true) { std::cout << "Loop counter one " << counterone << "\n"; std::cout << "Loop counter two " << countertwo << "\n"; std::cout …
All 5 Replies
NathanOliver 429 Veteran Poster Featured Poster
sergent 52 Posting Pro
WaltP 2,905 Posting Sage w/ dash of thyme Team Colleague
sergent 52 Posting Pro
Anuradha Mandal -28 Junior Poster
WaltP commented: Didn't NathanOliver already say that? -4
sergent commented: Do you really have to downvote just for that WalP?? +5
Be a part of the DaniWeb community
We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.