Advertisement
Guest User

Untitled

a guest
Nov 20th, 2019
102
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.20 KB | None | 0 0
  1. #include <iostream>
  2. using namespace std;
  3. int main(){
  4. int choice;
  5. cout<<"You're a bird watcher and you decide to go hiking on your day off. You're about two miles into the woods when you hear a strange yell coming from the behind you."
  6. <<"you panic and start to run until you soon reach a river."
  7. <<"You come up to the river and notice the current is stronger than you first thought. You think that crossing would be dangerous, but you hear the yells getting louder and more frequent\n"
  8. <<"Do you want to cross the river or take a longer way around\n"
  9. <<"1) cross 2)go around\n";
  10.  
  11. cin >> choice;
  12. if(choice == 1){
  13. cout<<"You begin swimming across the river and you feel something wrapping around your leg. you reach your hands down under water and feel a snake binding your legs together, "
  14. <<"leaving you unable to swim. the current pulls you further down river as the snake reaches closer and closer to your neck.\n"
  15. <<"you see a rock in the middle of the river and branch from a tree reaching out over the river\n"
  16. <<"1) grab the rock 2) grab the tree branch";
  17. cin >> choice;
  18. if(choice == 1){
  19. cout<<"You grab the rock and "
  20. }
  21. else{
  22.  
  23. }
  24.  
  25. }
  26. else
  27. cout"";
  28. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement