-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathloops_tutorial.cpp
More file actions
102 lines (89 loc) · 1.64 KB
/
loops_tutorial.cpp
File metadata and controls
102 lines (89 loc) · 1.64 KB
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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
// Loops Tutorial
#include <stdio.h>
int main()
{
printf("** For Loop Tutorial **");
// Print Table of 2
for (int i = 1; i < 11; i++)
{
printf("\n2 * %d = %d", i, 2 * i);
}
// Print Even Number
printf("\nEven Numbers :- ");
for (int i = 1; i < 100; i++)
{
if (i % 2 == 0)
{
printf(" %d ", i);
}
}
// Print Odd Number
printf("\nOdd Numbers :- ");
for (int i = 1; i < 100; i++)
{
if (i % 2 != 0)
{
printf(" %d ", i);
}
}
printf("** While Loop Tutorial **");
// Print Table of 2
int i = 1;
while (i < 11)
{
printf("\n2 * %d = %d", i, 2 * i);
i++;
}
// Print Even Number
printf("\nEven Numbers :- ");
i = 1;
while (i < 100)
{
if (i % 2 == 0)
{
printf(" %d ", i);
}
i++;
}
// Print Odd Number
printf("\nOdd Numbers :- ");
i = 1;
while (i < 100)
{
if (i % 2 != 0)
{
printf(" %d ", i);
}
i++;
}
printf("** Do While Loop Tutorial **");
// Print Table of 2
i = 1;
do
{
printf("\n2 * %d = %d", i, 2 * i);
i++;
} while (i < 11);
// Print Even Number
printf("\nEven Numbers :- ");
i = 1;
do
{
if (i % 2 == 0)
{
printf(" %d ", i);
}
i++;
} while (i < 100);
// Print Odd Number
printf("\nOdd Numbers :- ");
i = 1;
do
{
if (i % 2 != 0)
{
printf(" %d ", i);
}
i++;
} while (i < 100);
}