Make a c++ program that will print the given output using do while loop. Output: 5 6 7 8 9
The Answer to the Question
is below this banner.
Can't find a solution anywhere?
NEED A FAST ANSWER TO ANY QUESTION OR ASSIGNMENT?
Get the Answers Now!You will get a detailed answer to your question or assignment in the shortest time possible.
Here's the Solution to this Question
#include <iostream>
using namespace std;
int main() {
int count = 5;
do {
cout << count << endl;
count++;
} while (count < 10);
return 0;
}