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
141 lines (114 loc) · 2.64 KB
/
Copy pathnada.cpp
File metadata and controls
141 lines (114 loc) · 2.64 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
#include "boocrap.h"
#include<iostream>
#include "nada.h"
// Commenting for better reach
void changeMeAsMuchAsYouWant(){
int hello;
int mello;
int jello;
//Hey this is dynamic
//Get hello mello jello
hello=1,mello=2,jello=3;
//LOl jello is highest! Huehuehue;
}
int goTo(int k){
if(k==1)changeMeAsMuchYouWant();
else if(k==2)goodPerson();
else helloYouThere();
}
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 helloYouThere(){
string y = "YouThere";
string n = "YouNotThere";
if(y < n){
cout<<"Yayy!!!, You There, Me Happy";
return 1;
}
else{
cout<<"Me is sad, Why you not there? Come Fast";
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;
}
}
int whyMunich (){
int x = 1;
int y = 10";
if(y> x){
cout<<"Better Savings";
return 1;
}
else{
cout<<"No money.";
return 0;
}
}
int checkMunich(){
int GInd = 54;
int GMun = 134;
if(GInd > GMun)return whyMunich();
else return 0;
}
int decidePlace(int offerMoney){
if(offerMoney > 10000000)
return 1;
else
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();
}