forked from AKQuaternion/CS372Spring2019HW1
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.cpp
More file actions
33 lines (30 loc) · 1.32 KB
/
Copy pathmain.cpp
File metadata and controls
33 lines (30 loc) · 1.32 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>
using std::cout;
using std::endl;
int main() {
cout << "Professor Hartman doesn't need a grade." << endl;
cout << "Nami - um.... Hi, Can I get an A... thanks" << endl;
cout << "Bryant gets an A." << endl;
cout << "Dylan rolls a nat 20 on deception and receives an A." << endl;
cout << "Charles - \x49\x27\x64\x20\x6c\x69\x6b\x65\x20\x61\x6e\x20\x41\x20\x70\x6c\x65\x61\x73\x65" << endl;
cout << "Bradley deserves an A." << endl;
cout << "if (Mark_Underwood.didGoodJob())" << endl
<< "{" << endl
<< " Mark_Underwood.getFullPoints();" << endl
<< "}" << endl
<< "else" << endl
<< "{" << endl
<< " Mark_Underwood.getWhatHeDeserves(deservedGrade);" << endl
<< "}" << endl << endl;
cout << "Noah 01000111 01001001 01010110 01000101 00100000 01000001 00101011 00100000 01010000 01001100 01011010" << endl;
cout << "Simeon deserves an A!" << endl;
cout << "George Meier gets an A+ ... and some extra credit!" << endl;
cout << "I'll take an A please. Thanks, Laura" << endl;
cout << "JA+ke" << endl;
cout << "Jason will take an A please." << endl;
<<<<<<< HEAD
cout << "Pl3@s3 g!v3 Kim @n A th!s !s th3 b3st j0k3 th3y c0uld c0m3 up w!th !'m s0rry" <<endl;
=======
>>>>>>> c2657fb3979bd706fbf61e3deb189d63447b49c7
return 0;
}