-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.cpp
More file actions
125 lines (105 loc) · 2.52 KB
/
Copy pathmain.cpp
File metadata and controls
125 lines (105 loc) · 2.52 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
// #include <iostream>
// #include <string>
// int main()
// {
// int n;
// int e_star = 4;
// std::cin >> n;
// // std::cout << n << std::endl;
// // std::cout << "*" << std::string(e_star," *") << std::endl;
// std::cout << 2*n+1 << std::endl;
// std::cout << "*" <<std::string(e_star,'*') << std::endl;
// // for (int i=(2*n+1);i>=1;i--)
// // {
// // if (i>3) // if true, add spaces
// // {
// // std::cout << std::string(i,' ') << std::endl;
// // }
// // else // last three rows of every pattern
// // {
// // }
// // }
// return 0;
// }
// // Example program
// #include <iostream>
// #include <string>
// int main()
// {
// int o = 3;
// int e = 1;
// int n;
// std::cin >> n;
// class repeat{
// public:
// repeat(){
// std::cout<<" *";
// }
// };
// for (int i=n;i>=1;i--)
// {
// if (i==1) {
// std::cout<< std::string(o,"*") << std::endl;
// std::cout<<"*";
// repeat obj[e];
// std::endl;
// std::cout<< std::string(o,"*") << std::endl;
// }
// else
// {
// std::cout<< std::string(o,"*") << std::endl;
// std::cout<<"*";
// repeat obj[e];
// std::endl;
// o += 2;
// e +=1;
// }
// }
// return 0;
#include <iostream>
#include <string>
void Printer(int times)
{
std::cout << "*";
for (int i=times;i>=1;i--)
{
std::cout << " *";
}
std::cout<< std::endl;
}
// int main(){
// int n;
// std::cin>>n;
// // std::cout << std::string(100, '*') << std::endl;
// // std::cout << std::string(7,'*') << std::endl;
// Printer(n);
// return 0;
// }
int main(){
int odd = 3;
int even = 1;
int n;
std::cin>>n;
// std::cout << std::string(100, '*') << std::endl;
// std::cout << std::string(7,'*') << std::endl;
for (int i=n;i>=1;i--)
{
if (i==1) // if reaches the base of pyramid
{
std::cout<< std::string(odd,'*') << std::endl;
Printer(even);
std::cout<< std::string(odd,'*') << std::endl;
}
else
{
std::cout << std::string(i-1,' ');
std::cout << std::string(odd,'*') << std::endl;
std::cout << std::string(i-1,' ');
Printer(even);
odd+=2;
even+=1;
}
}
// Printer(n);
return 0;
}