forked from coder2hacker/Explore-open-source
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathHeartPattern.cpp
75 lines (62 loc) · 1.09 KB
/
HeartPattern.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
#include<iostream>
#include<bits/stdc++.h>
using namespace std;
int main()
{
int i,j,n;
char name[50];
int len;
cout<<"ENTER YOUR NAME :"<<endl;
cin>>name;
cout<<"Enter the value of n :"<<endl;
cin>>n;
len = strlen(name);
for(i=n/2; i<=n; i+=2)
{
for(j=1; j<n-i; j+=2)
{
cout<<" ";
}
for(j=1; j<=i; j++)
{
cout<<"*";
}
for(j=1; j<=n-i; j++)
{
cout<<" ";
}
for(j=1; j<=i; j++)
{
cout<<"*";
}
cout<<"\n";
}
for(i=n; i>=1; i--)
{
for(j=i; j<n; j++)
{
cout<<" ";
}
if(i==n)
{
for(j=1; j<=(n*2-len)/2; j++)
{
cout<<"*";
}
cout<<name;
for(j=1; j<(n*2-len)/2; j++)
{
cout<<"*";
}
}
else
{
for(j=1; j<=(i*2)-1; j++)
{
cout<<"*";
}
}
cout<<"\n";
}
return 0;
}