finish this story plz

How do I extend this story like if I picked the number and I want the story to go even further?

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
#include <iostream>
using namespace std;
int main()
{
    int num;
    bool 
    cout <<"walked in the woods "<<endl;
    cout <<"found a dead dollar "<<endl;
    cout <<"what should I do? "<<endl;
    cout <<"1:go to the moon, 2:give it to a homeless man, 3:get some ice cream "<<endl;
    cin>>num;
    if (num==1){
        cout << "im the luckiest man in the world!!!!! yaaay "<<endl;

    }
        if (num==2){
            cout <<"may the gods bless your soul "<<endl;

        }
            if (num==3){
                cout <<"enjoy your ice cream "<<endl;

            }

}

Topic archived. No new replies allowed.