-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathmain.cpp
More file actions
78 lines (59 loc) · 1.75 KB
/
main.cpp
File metadata and controls
78 lines (59 loc) · 1.75 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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
#include <iostream>
using namespace std;
const char* Akiri(void) {
return "A robot may not injure a human being, or, through inaction, allow a human being to come to harm. - The first law of Robotics -";
}
const char* Barb(void) {
return "/*Type something here*/";
}
const char* Bryam(void) {
return "/*Type something here*/";
}
const char* Gabe(void) {
return "/*Type something here*/";
}
const char* Gustavo(void) {
return "I'm surprisingly doing this assignment before the due deadline.";
}
const char* Jacob(void) {
return "/*Type something here*/";
}
const char* Michael(void) {
return "Hello, C++ is amazing!";
}
const char* Minjie(void) {
return "/*Type something here*/";
}
const char* Nick(void) {
return "ut tensio, sic vis; as the extension, so the force -RH";
}
const char* Sebastian(void) {
return "Hi, it is nice to see you all every Monday at least through Zoom. Good luck everyone with your research!!";
}
const char* Yun(void) {
return "/*Type something here*/";
}
const char* Zahra(void) {
return "/I like C++/";
}
const char* Zarak(void) {
return "/A rainy Friday is still better than a sunny Monday/";
}
int main (int argc, const char **argv)
{
cout << "Roll Call!" << endl << endl;
cout << "Akiri: " << Akiri() << endl;
cout << "Barb: " << Barb() << endl;
cout << "Bryam: " << Bryam() << endl;
cout << "Gabe: " << Gabe() << endl;
cout << "Gustavo: " << Gustavo() << endl;
cout << "Jacob: " << Jacob() << endl;
cout << "Michael: " << Michael() << endl;
cout << "Minjie: " << Minjie() << endl;
cout << "Nick: " << Nick() << endl;
cout << "Sebastian: " << Sebastian() << endl;
cout << "Yun: " << Yun() << endl;
cout << "Zahra: " << Zahra() << endl;
cout << "Zarak: " << Zarak() << endl;
return 0;
}