-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathday2.cpp
More file actions
162 lines (138 loc) · 3.33 KB
/
day2.cpp
File metadata and controls
162 lines (138 loc) · 3.33 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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
#include <iostream>
using namespace std;
// important pattern problems (very useful)
int main()
{
// number pattern increasing order
int n;
cout << "enter a number : ";
cin >> n;
// cout << "number pattern : " << endl;
// for (int i = 1; i <= 7; i++)
// int num = 1;
// for (int i = 1; i < n; i++)
// {
// for (int j = 0; j < n; j++)
// {
// cout << num << " ";
// num++;
// }
// cout << endl;
// }
// similar based alphabet problem
cout << "alphabet pattern : " << endl;
int num = 65;
for (int i = 1; i < n; i++)
{
for (int j = 0; j < n; j++)
{
if (num >= 65 && num <= 98)
{
cout << char(num) << " ";
num++;
}
}
cout << endl;
}
// just a change of cout statements and the output is different
// increasing number patter line wise
cout << "increasing number line wise: " << endl;
for (int i = 1; i <= n; i++)
{
for (int j = 1; j < i + 1; j++)
{
cout << i << " ";
}
cout << endl;
}
// increasing number patter column wise
cout << "column wise: " << endl;
for (int i = 1; i <= n; i++)
{
for (int j = 1; j < i + 1; j++)
{
cout << j << " ";
}
cout << endl;
}
// reverse triangle pattern
cout << "reverse triangle pattern: " << endl;
for (int i = 0; i < n - 1; i++)
{
for (int j = i + 1; j > 0; j--)
{
cout << j << " ";
}
cout << endl;
}
// floyds triangle pattern
// the way is to print the outer loop normally (i upto n) , the inner loop to i+1 , then print the
// number to update
int num2 = 1;
cout << "floyds triangle pattern: " << endl;
for (int i = 0; i < n; i++)
{
for (int j = 0; j < i + 1; j++)
{
cout << num2 << " ";
num2++;
}
cout << endl;
}
// inverted triangle pattern
cout << "inverted decreasing pattern: " << endl;
for (int i = 1; i < n; i++)
{
for (int j = i; j < n; j++)
{
cout << j << " ";
}
cout << endl;
}
// space decreassing reverse
cout << "space decreasing pattern: " << endl;
for (int i = 1; i < n; i++)
{
for (int j = i; j < n; j++)
{
cout << i << " ";
}
cout << endl;
}
// space increasing pattern
cout << "space increasing pattern: " << endl;
for (int i = 0; i < n; i++)
{
for (int j = 0; j < i; j++)
{
cout << " ";
}
for (int k = 0; k < n - i; k++)
{
cout << (i + 1);
}
cout << endl;
}
// complex pattern
cout << "complex patterns: " << endl;
for (int i = 0; i < n; i++)
{
// this prints the spaces
for (int j = 0; j < n - i - 1; j++)
{
cout << " ";
}
// this prints the reverse column wise pattern
for (int j = 1; j <= i + 1; j++)
{
cout << j;
}
// this prints the reverse trianlge pattern
for (int j = i; j > 0; j--)
{
cout << j;
}
cout << endl;
}
return 0;
}