-
Notifications
You must be signed in to change notification settings - Fork 5
/
C++ Program for HBD.cpp
59 lines (45 loc) · 1.29 KB
/
C++ Program for HBD.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
#include<windows.h>
#include<iostream>
#include<stdlib.h> //for system("cls");
using namespace std;
int main()
{
int i;
char h=3;
system("cls");
system("color f5"); //f->white background, 5->purple text
cout<<"\t\t\tFrom: Dharmendra Agrawal\n";
Sleep(2000);
cout<<"\t\t\tTo : Person's name\n\n";
Sleep(2000);
cout<<"\t\t";
for(i=0;i<42;i++)
cout<<"_";
cout<<"\n\n";
system("color f9"); //f->white background, 9->light blue text
Sleep(2000);
cout<<"\t\t\t\ti i i i i\n";
Sleep(2000);
cout<<"\t\t\t\ti i i i i\n";
Sleep(2000);
cout<<"\t\t\t __i_i_i_i_i__\n";
Sleep(2000);
cout<<"\t\t\t |"<<h<<" "<<h<<"|\n";
Sleep(2000);
cout<<"\t\t\t __| "<<h<<" dd/mm "<<h<<" |__\n";
Sleep(2000);
cout<<"\t\t\t | "<<h<<" "<<h<<" "<<h<<" "<<h<<" |\n";
Sleep(2000);
cout<<"\t\t\t__|"<<h<<" HAPPY "<<h<<" "<<h<<"|__\n";
Sleep(2000);
cout<<"\t\t | "<<h<<" "<<h<<" BIRTHDAY "<<h<<" |\n";
Sleep(2000);
cout<<"\t\t |"<<h<<" "<<h<<" "<<h<<" "<<h<<" "<<h<<" "<<h<<"|\n";
Sleep(2000);
cout<<"\t\t | "<<h<<" "<<h<<" "<<h<<" "<<h<<" N A M E "<<h<<" "<<h<<" "<<h<<" "<<h<<" |\n";
Sleep(2000);
cout<<"\t\t |_________________________|\n";
cout<<"\n\n\n\n\n";
system("pause");
return 0;
}