Advertisements
Advertisements
Question
Write a for loop that displays the number from 21 to 30.
Short Note
Solution
# include
using namespace std;
int main()
{
for (int = 21; i < 31; i++)
cout << “value of i:” << i << endl;
return 0;
}
Output:
Value of i: 21
Value of i: 22
Value of i: 23
Value of i: 24
Value of i: 25
Value of i: 26
Value of i: 27
Value of i: 28
Value of i: 29
Value of i: 30
shaalaa.com
Iteration Statements
Is there an error in this question or solution?
APPEARS IN
RELATED QUESTIONS
The set of statements that are executed again and again in iteration is called ______
How many types of iteration statements?
How many times the following loop will execute? for (int i = 0; i < 10; i++)
Which of the following is the exit control loop?
Which of the following is called the entry control loop?
A loop that contains another loop inside its body: ______
Write a while loop that displays numbers 2, 4, 6, 8.......20.