-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlogo.cpp
30 lines (25 loc) · 1.18 KB
/
logo.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
// Kaitlyn Lavan
// Sept. 8, 2017
// code to output a logo - CS!
#include <iostream>
using namespace std;
int main()
{
cout << "******************************************" << endl;
cout << " " << endl;
cout << " C C C S S S S !! " << endl;
cout << " C C S S !! " << endl;
cout << " C S !! " << endl;
cout << " C S !! " << endl;
cout << " C S S S S !! " << endl;
cout << " C S !! " << endl;
cout << " C S !! " << endl;
cout << " C C S S " << endl;
cout << " C C C S S S S 00 " << endl;
cout << " " << endl;
cout << "******************************************" << endl;
cout << " " << endl;
cout << " " << endl;
cout << " Computer Science is Cool Stuff!!! " << endl;
return 0;
}