forked from mr-sergi/Hacktoberfest-2021
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy patha2.cpp
More file actions
26 lines (26 loc) · 695 Bytes
/
Copy patha2.cpp
File metadata and controls
26 lines (26 loc) · 695 Bytes
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
#include<iostream>
#include<cmath>
#include<cstdlib>
#include<ctime>
using namespace std;
int main (){
srand(time(0));
const int size=60;
cout << "Enter a letter to begin \n ";
char x; cin>> x;
int position = size /2;
while (true) {
cout << "|START|" ;
for (int i=0; i<size;i++) {
if (i == position)
cout << x;
else cout << " ";}
cout << "|FINISH|" << endl;
int move= rand()%3 - 1;
position = position + move;
if (position <1) {cout << "You could not finish the race!" <<endl; break;}
if (position >size-1) {cout << "Yay! You finished the race" << endl; break;}
for(int sleep=0; sleep< 1000000 ; ++ sleep);
}
return 0;
}