-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathweek27.cpp
More file actions
21 lines (21 loc) · 1.63 KB
/
Copy pathweek27.cpp
File metadata and controls
21 lines (21 loc) · 1.63 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#include<iostream>
using namespace std;
main()
{
cout<< " 000000 000000 " << endl ;
cout<< " .............. 00 0 0 0 ............ " << endl ;
cout<< " ............. 000 0 0 ........... " << endl ;
cout<< " ........... 000 0 0 ......... " << endl ;
cout<< " ......... 00 0 0 ........ " << endl ;
cout<< " ....... 00 0 0 ....... " << endl ;
cout<< " ...... 0000000000 000000 th ...... " << endl ;
cout<< " ..... ------------------------------------- ..... " << endl ;
cout<< " .... C E N T U R Y .... " << endl ;
cout<< " ... ------------------------------------- ... " << endl ;
cout<< " .. 0000000 00000 0 0 0000000 .. " << endl ;
cout<< " ** 0 0 0 0 0 ** " << endl ;
cout<< " __||__ 0 00000 0 0 __||__ " << endl ;
cout<< " | | 0 0 0 0 0 | | " << endl ;
cout<< " ______|______|____ 0 00000 0 0 0 _____|______|______ " << endl ;
system("color 57");
}