-
Notifications
You must be signed in to change notification settings - Fork 46
/
Correction_C++.cpp
320 lines (264 loc) · 8.82 KB
/
Correction_C++.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
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
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
//
// CPPCorrection.cpp
// CPPCorrection
//
// Created by P1kachu on 15/09/14.
// Copyright (c) 2014 P1kachu. All rights reserved.
//
//
// Reviewed by:
// - Lantare
// - Nobody else.
//
// Function prototypes will not be added in a different header file to make it easier,
// but you should use headers in practice.
#include <iostream>
#include <cstdlib>
#define NUMBEROFELEMENTS(x) (int)(sizeof (x) / sizeof (x[0])) //used to check how many elements are in an array for example
using namespace std;
//Function prototypes
void TriForce();
string Hello(string name);
int Addition(int a, int b);
int Subtraction(int a, int b);
int Multiplication(int a, int b);
int Division(int a, int b);
int rdm();
int rdmBounds(int min, int max);
string Reverse(string str);
bool logicGates(bool x, bool y);
int main()
{
// Part One:
// FIXME: Declare variables
// Declare two variables: an integer named "age", and a string named "name" with corresponding values (your name and age)
string name = "Stan";
int age = 19;
// FIXME: Print
// Print the following sentence in the console "You are NAME and you are AGE years old !". Don't forget to add a newline at the end
cout << "You are " << name << " and you are " << age << " years old !\n";
// FiXME: Concatenation
// Create a new string variable called "hello" which value is "Hello ". Add "name" at the end of "hello" (Concatenation) then print it
string hello = "Hello ";
hello += name;
cout << hello << endl; //endl adds a newline
// FIXME: Array
// create a new string array called "shoppingList", with three elements of your choice. Create an int variable containing the number of
// elements in "shoppingList" (using a function of the array/using the array)
string shoppingList[3] = {"milk", "a Chevy Camaro", "a life"};
int nbOfElements = NUMBEROFELEMENTS(shoppingList);
// FIXME: For-loop - Integer
// Create a simple for-loop for an integer "i" going from 1 to 10 that print the value of "i"
for (int i = 1; i <= 10; i++) // when having only one line in a for-loop/if -statement/etc, {brackets} are optional
cout << i << endl;
// FIXME: For-loop - shoppingList
// Create a for loop that iterate through "shoppingList" and prints each element.
for (int j = 0; j < nbOfElements; j++)
cout << shoppingList[j] << endl;
// FIXME: Foreach-loop
// Do the same with a foreach-loop.
// Without using vectors, it's a pain in the ass apparently... So let's stay with the for-loop
// FIXME: If-statement
// Modify the first for-loop (with i from 1 to 10) such that it prints "(value of i) is even" when "i" is divisible
// by 2 (You may want to learn more about "modulo" (%)). Else, print "(value of i) is odd".
for (int i = 1; i <= 10; i++)
{
if (i%2 == 0)
cout << i << " is even" << endl;
else
cout << i << " is odd" << endl;
}
// FIXME: Sum Up
// Create a string variable called "element" with the value of your choice. Then create a for-loop that checks if "shoppingList" contains
// "element". If yes, print "You have to buy (value of element) !", and stop the loop (search how to stop a loop).
// If not, print "Nope, you don't need (value of "element")".
string element = "a life";
for (int i = 0; i < nbOfElements; i++)
{
if (element == shoppingList[i])
{
cout <<"You have to buy " << shoppingList[i] << " ! \n";
break;
}
else
cout << "Nope, you don't need " << shoppingList[i] << " ! \n";
}
// Part Two:
// FIXME: Functions - Ascii
// Create a function that returns nothing and which doesn't takes any parameter. It should just be named "TriForce"
// and print the TriForce symbol (one triangle over two other ones, can be found on internet) with "TRIFORCE"
// Don't forget to call the function !
TriForce();
// FIXME: Functions - One parameter
// Create a function that takes a string as parameter and returns "Hello (value of string) !"
cout << Hello("Stan");
// FIXME: Functions - Multiple parameters
// Create a function that takes two integers as parameters and returns the addition of these two.
// You can do the same with multiplication, subtraction and division.
cout << Addition(5, 12) << endl;;
cout << Subtraction(5, 12) << endl;;
cout << Multiplication(5, 12) << endl;;
cout << Division(5, 12) << endl;; // returns 0 because "a" and "b" are Integers (no point)
cout << Division(10, 2) << endl;;
// FIXME: User entry
// Create a string variable that takes what the user enter in the console as value. Then print "You entered (value of string)"
string userInput;
cin >> userInput;
cout << "You entered " << userInput << endl;
// FIXME: While loop
// Create a while loop that takes a number and divides it by 2 until it is less than 3
int number = 56;
while (number > 3)
{
number /= 2; // <=> number = number / 2;
cout << number << endl;
}
// FIXME: do-While loop
// Do the same with a do-while loop
int number2 = 86;
do
{
number2 /= 2;
cout << number2 << endl;
} while (number2 > 3);
// FIXME: Random generator
// Create a function that returns a random number
srand(time(NULL)); // Time used to seed the random
cout << rdm();
// FIXME: Random generator with bounds
// Create another function that returns a random number between two bounds given as parameters.
cout << rdmBounds(2, 26) << endl;
cout << rdmBounds(2, 26) << endl;
// FIXME: Multidimensional array
// Create a two dimensional int array of 3 columns and 3 rows. Use 2 for-loops to add a random number
// between 1 and 9 in each of the 9 rooms.
// You may use one of the two previously created function.
// Then print them such that they appear like this (with [x1,x9] being the 9 random integers):
// {x1,x2,x3,}
// {x4,x5,x6,}
// {x7,x8,x9,}
int multiArray[3][3];
for (int i = 0; i < NUMBEROFELEMENTS(multiArray); i++)
for (int j = 0; j < NUMBEROFELEMENTS(multiArray[i]); j++)
multiArray[i][j] = rdmBounds(0, 10);
for (int i = 0; i < NUMBEROFELEMENTS(multiArray); i++)
{
cout << "{";
for (int j = 0; j < NUMBEROFELEMENTS(multiArray[i]); j++)
cout << multiArray[i][j] << ", ";
cout << "}\n";
}
//FIXME: Switch
//Create a Switch that takes an integer "a" and return a sentence regarding the value of a
//(Create 3 statements for 3 specific values and a default one)
int a;
cin >> a;
switch(a){
case 1:
cout << "Num: 1\n";
break;
case 2:
cout << "Num: 2\n";
break;
case 3:
cout << "Num: 3\n";
break;
default:
cout << "Number: " << a << endl;
break;
}
//FIXME: logic Gates
//Create 7 functions for each logic gates (And, Or, No, Nand, Nor).
//Each function takes two booleans as parameters and returns the result of the logic gate.
//(or You can do it with a switch and only one function)
cout << "Logic gate: " << logicGates(true, false) << endl;
//FIXME - Reverse
//Create a function that reverse a string
cout << Reverse("Hello Friend.") << endl;
return 0;
}
void TriForce()
{
cout << " /\\ \n";
cout << " /__\\ \n";
cout << " /\\ /\\ \n";
cout << "/__\\/__\\ \n";
cout << "TRIFORCE\n";
}
string Hello(string name)
{
return "Hello " + name + " !\n";
}
int Addition(int a, int b)
{
return a + b;
}
int Subtraction(int a, int b)
{
return a - b;
}
int Multiplication(int a, int b)
{
return a *b;
}
int Division(int a, int b)
{
return a / b;
}
int rdm()
{
return rand();
}
int rdmBounds(int min, int max)
{
return min + (rand() % (max - min));
}
string Reverse(string str){
string temp="";
for(int i = str.length()-1; i >= 0; i--)
temp += str[i];
return temp;
}
bool logicGates(bool x, bool y){
//And, Or, No, Nand, Nor,
int i;
cout << "Choose num: \n"
<< "0 - AND\n" << "1 - OR\n" << "2 - NO\n" << "3 - NAND\n"
<< "4 - NOR\n";
cin >> i;
switch(i){
case 0://and
if(x && y)
return true;
else
return false;
break;
case 1://or
if (x || y)
return true;
else
return false;
break;
case 2://no
if (x)
return false;
else
return true;
break;
case 3://nand
if(x && y)
return false;
else
return true;
break;
case 4://nor
if (x || y)
return false;
else
return true;
break;
default:
cout << "Wrong Value\n";
break;
}
}