forked from shashwat211/spaceShooter
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnada.cpp
More file actions
77 lines (64 loc) · 1.55 KB
/
Copy pathnada.cpp
File metadata and controls
77 lines (64 loc) · 1.55 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
#include "boocrap.h"
#include<iostream>
#include "nada.h"
// Commenting for better reach
int goodPerson(){
//No one is supposed to change this -_-
string i = "GoodPerson";
string u = "BadPerson";
int myGoodness = 22;
int urGoodness = 21;
if(myGoodness > urGoodness){
cout<<"HEHE I WON";
return 1;
}
else{
cout<<"DON'T BE HAPPY< I LET YOU WIN";
return 0;
}
}
int improveLogic(){
string prevLogic = "Good";
string newLogic = "VeryGoodTheBest";
if(newLogic > prevLogic){
cout<<"HEHE, Ur logic bad";
return 1;
}
else{
cout<<"SORRY !!!, Error!!, Can't be possible";
return 0;
}
}
using namespace std;
boocrap::boocrap()
{
cout<<"I am a banana\n";
int a = 0;
a++;
int c;
c++;
int b = a + 5;
}
huehue::huehue() {
cout << "Hue hue \n";
int a= 1;
int b= 0;
int c= 3;
cout<<a+b+c;
}
creator::creator() {
cout << "This is the creator space. \n Initialising space and building ship" << endl;
int ship_lives = 3;
}
int main() {
cout << "Hello there" << endl;
cout << "Are you a banana?" << endl;
cout << "whatsupp?" << endl;
cout << "Thanks!!" << endl;
cout << "First" << endl;
cout << "Final" << endl;
cout << "Are you a banana?" << endl;
cout << "Adding fpow and gcd turn by turn..." << endl;
Student x;
x.printSubjects();
}