Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <iostream>
- #include <string>
- using namespace std;
- bool getUpEarly;
- int main()
- {
- void shittyTypist();
- char getUpPlan;
- cout << "Are you planning on waking up early? Y/N: ";
- cin >> getUpPlan;
- if (getUpPlan == 'Y' || getUpPlan == 'y')
- {
- char tired;
- cout << "Are you tired yet? Y/N: ";
- cin >> tired;
- if (tired == 'Y' || tired == 'y')
- {
- cout << "How can you wake up on time when you're so tired?";
- getUpEarly = false;
- }
- else if (tired == 'N' || tired == 'n')
- {
- char theInternetIsReal;
- cout << "Does reddit/the internet still exist? Y/N: ";
- cin >> theInternetIsReal;
- if (theInternetIsReal == 'Y' || theInternetIsReal == 'y')
- {
- cout << "You stay up all night on the internet.";
- getUpEarly = false;
- }
- else if (theInternetIsReal == 'N' || theInternetIsReal == 'n')
- {
- cout << "Why get up early if the world is in total chaos?";
- getUpEarly = false;
- }
- else
- {
- shittyTypist();
- }
- }
- else
- {
- shittyTypist();
- }
- }
- else if (getUpPlan == 'N' || getUpPlan == 'n')
- {
- getUpEarly = false;
- }
- else
- {
- shittyTypist();
- }
- if (getUpEarly == true)
- {
- cout << endl << "You must have cheated.";
- }
- else if (getUpEarly == false)
- {
- cout << endl << "You wake up late.";
- }
- cout << endl << endl << "Enter anything to quit: ";
- string quit; cin >> quit;
- return 0;
- }
- void shittyTypist()
- {
- cout << "You should probably sleep more if you can't type a single letter.";
- getUpEarly = false;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement