-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmyHeader.h
25 lines (22 loc) · 1.15 KB
/
myHeader.h
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
#include <iostream>
// #include <cstdio>
// #include <string.h>
// #include <math.h>
#include<stdlib.h>
#include<ctime>
#define D 8
#define O 'O'
#define X 'X'
using namespace std;
void welcome() {
cout<<"\n\n\t\t ************************************************************"<<endl;
// cout<<"\t************************************************************"<<endl;
cout<<"\t\t\t |) |_ \\ / |_ |) ( |";
cout<<"\n\t\t\t |\\ |_ \\/ |_ |\\ ) |";
cout<<"\n\t\t ************************************************************"<<endl<<endl;
// cout<<"\t************************************************************"<<endl<<endl;
cout<<"\t\t\t\t\t\' \' \' \' \' \' \' \'\n\t\t\t\t\t\' \' \' \' \' \' \' \' \n\t\t\t\t\t\' \' \' \' \' \' \' \' \n\t\t\t\t\t\' \' \' \' \' \' \' \' \n\t\t\t\t\t\' \' \' \' \' \' \' \' \n\t\t\t\t\t\' \' \' \' \' \' \' \' \n\t\t\t\t\t\' \' \' \' \' \' \' \' \n\t\t\t\t\t\' \' \' \' \' \' \' \' \n";
cout<<"\n\t\t ************************************************************"<<endl<<endl<<endl;
cout<<"\n\n\t \tPS: You make your mistake, you lose your chance."<<endl;
return;;
}