forked from AlexMPC/ALL-Project-2-master-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathintro.cpp
More file actions
33 lines (32 loc) · 2.82 KB
/
intro.cpp
File metadata and controls
33 lines (32 loc) · 2.82 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
#include <iostream>
#include "intro.h"
using namespace std;
void Intro::intro(){
cout<<"/$$ |$$ |$$ "<<endl;
cout<<"| $$ |$ | $$ | $$ "<<endl;
cout<<"| $$ |$$$| $$ |$$$$$$ | $$ |$$$$$$$ |$$$$$$ |$$$$$$|$$$$ |$$$$$$ "<<endl;
cout<<"| $$|$$ $$ $$ |$$__ $$| $$ |$$_____| |$$__ $$| $$_ $$_ $$ |$$__ $$"<<endl;
cout<<"| $$$$_ $$$$| $$$$$$$$| $$| $$ | $$ | $$| $$ | $$ | $$|$$$$$$$$"<<endl;
cout<<"| $$$| | $$$| $$_____|| $$| $$ | $$ | $$| $$ | $$ | $$||$$_____|"<<endl;
cout<<"| $$| | $$| $$$$$$$| $$| $$$$$$$| $$$$$$/| $$ | $$ | $$| |$$$$$$$"<<endl;
cout<<"|__| |__| |_______||__| |_______| |______/ |__| |__ ||__ | _______|"<<endl;
cout<<" $$| "<<endl;
cout<<" $$ | "<<endl;
cout<<"$$$$$$| $$$$$$| "<<endl;
cout<<"|_$$ _| $$ __$$| "<<endl;
cout<<" $$ | $$ | $$ |"<<endl;
cout<<" $$ |$$|$$ | $$ |"<<endl;
cout<<" |$$$$ |$$$$$$ |"<<endl;
cout<<" |____| |______|"<<endl;
cout<<" |$$$$$$$ |$$$$$$ |$$ "<<endl;
cout<<"| $$__ $$ |$$__ $$ | $$ "<<endl;
cout<<"| $$ | $$ |$$ |$$ |$$$$$$$ |$$$$$$ |$$$$$$ |$$$$$$ |$$$$$$$ | $$ |__| |$$$$$$ |$$$$$$ |$$ |$$ |$$| $$ |$$$$$$ |$$$$$$ "<<endl;
cout<<"| $$ | $$| $$ | $$| $$__ $$ |$$__ $$ |$$__ $$ |$$__ $$| $$__ $$ | $$ |$$__ $$|____ $$| $$ | $$ | $$| $$ |$$__ $$ |$$__ $$"<<endl;
cout<<"| $$ | $$| $$ | $$| $$ | $$| $$ | $$| $$$$$$$$| $$ | $$| $$ | $$ | $$ | $$ |__| |$$$$$$$| $$ | $$ | $$| $$| $$$$$$$$| $$ |__|"<<endl;
cout<<"| $$ | $$| $$ | $$| $$ | $$| $$ | $$| $$_____/| $$ | $$| $$ | $$ | $$ $$| $$ |$$__ $$| $$ | $$ | $$| $$| $$_____|| $$ "<<endl;
cout<<"| $$$$$$$|| $$$$$$|| $$ | $$| $$$$$$$| $$$$$$$| $$$$$$|| $$ | $$ | $$$$$$|| $$ | $$$$$$$| $$$$$|$$$$|| $$| $$$$$$$| $$ "<<endl;
cout<<"|_______| |______| |__| |__| |____ $$ |_______| |______| |__| |__| |______| |__| |_______| |_____||___| |__| |_______||__| "<<endl;
cout<<" |$$ | $$ "<<endl;
cout<<" | $$$$$$| "<<endl;
cout<<" |______| "<<endl;
}