-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtut10.cpp
88 lines (75 loc) · 1.53 KB
/
tut10.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
// For , While and do - while loops in C++
#include <iostream>
using namespace std;
int main()
{
/*LOOPS STRUCTURE IN C++.
There are three types of loops in C++.
1. For loops
2. While loops
3. Do-While loops
*/
/*FOR LOOPS IN C++.*/
// int i = 1;
// cout<<i<<endl;
// i++;
// cout<<i<<endl;
// i++;
// cout<<i<<endl;
// i++;
// cout<<i<<endl;
// i++;
// cout<<i<<endl;
// i++;
// SYNTAX FOR FOR LOOP
// for(initialization; condition; updation)
// {
// loop body(C++ code);
// }
// for(int i=0; i<=40; i++)
// {
// cout<<i<<endl;
// }
// EXAMPLE OF INFINITE FOR LOOP
// for(int i=0; 34<40; i++)
// {
// cout<<i<<endl;
// }
/*WHILE LOOP IN C++*/
// syntax for while loop in C++
// while(condition)
// {
// C++ statements;
// updation;
// }
// printing 1 to 40 using while loop
// int i = 1;
// while(i<=40)
// {
// cout<<i<<endl;
// i++;
// }
// EXAMPLE OF INFINITE WHILE LOOP
// int i=1;
// while(true)
// {
// cout<<i<<endl;
// i++;
// }
// DO WHILE LOOP IN C++
// syntax for do while loop in C++
// do
// {
// C++ statements;
// updation;
// }while(condition);
// Printing 1 to 40 using do while loop in C++
int i = 1;
do
{
cout<<i<<endl;
i++;
}while(false);
// question -->write a multiplication table of six using loop
return 0;
}