-
Notifications
You must be signed in to change notification settings - Fork 1
/
Pattern28.cpp
65 lines (55 loc) · 974 Bytes
/
Pattern28.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
/*
**********
**** ****
*** ***
** **
* *
* *
** **
*** ***
**** ****
**********
*/
#include <iostream>
using namespace std;
int main()
{
int n;
cout << "Enter the value of n: ";
cin >> n;
for (int i = 1; i <= n; i++)
{
for (int j = 1; j <= n - i + 1; j++)
{
cout << "*";
}
// for space in-between
for (int s = 1; s <= i - 1; s++)
{
cout << " ";
}
for (int k = 1; k <= n - i + 1; k++)
{
cout << "*";
}
cout << endl;
}
for (int i = 1; i <= n; i++)
{
for (int j = 1; j <= i; j++)
{
cout << "*";
}
// for space in-between
for (int s = 1; s <= n - i; s++)
{
cout << " ";
}
for (int k = 1; k <= i; k++)
{
cout << "*";
}
cout << endl;
}
return 0;
}