added a number that it likes
This commit is contained in:
parent
9ce07151d1
commit
d143904c1d
2 changed files with 29 additions and 24 deletions
2
TO-DO.md
2
TO-DO.md
|
@ -1 +1 @@
|
||||||
Learn stuffies
|
add a file that has the number that someone typed aswell as their name
|
||||||
|
|
|
@ -5,19 +5,24 @@ void NumberInput() {
|
||||||
int UsrNum; // this makes a variable
|
int UsrNum; // this makes a variable
|
||||||
cout << "Type your favorite number will ya: ";
|
cout << "Type your favorite number will ya: ";
|
||||||
cin >> UsrNum; // this gets checks for user input and loads it into UsrNum
|
cin >> UsrNum; // this gets checks for user input and loads it into UsrNum
|
||||||
|
//if the number you typed is 69 then it displays Nice in the command line if not then it says it hates that number
|
||||||
|
if (UsrNum==69){
|
||||||
|
cout << "Nice \n";
|
||||||
|
} else {
|
||||||
cout << "Ew I hate the number " << UsrNum << endl; // this displays the number in UsrNum and then to go down a line
|
cout << "Ew I hate the number " << UsrNum << endl; // this displays the number in UsrNum and then to go down a line
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
void PrgEnd() {
|
void PrgEnd() {
|
||||||
string Name; // this makes a string called name
|
string Name; // this makes a string called name
|
||||||
cout << "To exit the program please type your name: ";
|
cout << "To exit the program please type your name: ";
|
||||||
cin >> Name; // this gets what you typed
|
cin >> Name; // this gets what you typed
|
||||||
cout << "Thanks for playing: " << Name;// this displays what you type
|
cout << "Thanks for playing: " << Name << endl;// this displays what you type
|
||||||
}
|
}
|
||||||
|
|
||||||
int main() {
|
int main() {
|
||||||
NumberInput(); // this runs the NumberInput function
|
NumberInput(); // this runs the NumberInput function
|
||||||
PrgEnd();
|
PrgEnd(); // this runs the PrgEnd function
|
||||||
return 0;// this tells all the functions and code to go back to main aka the start
|
return 0;// this tells all the functions and code to go back to main aka the start
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue