-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstory.cpp
More file actions
28 lines (22 loc) · 1.04 KB
/
story.cpp
File metadata and controls
28 lines (22 loc) · 1.04 KB
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
28
#include <iostream>
using namespace std;
int main()
{
string story_continue = "Type anything to continue...";
string placeholder;
cout << "My epic story" << endl;
cout << story_continue << endl;
cin >> placeholder;
cout << "It starts on a sad, rainy day. The wind blew solemly through the town, rustling the leaves." << endl;
cout << "A man began walking down begrudgingly through the streets, the soles of his boots splashing the lukewarm puddles." << endl;
cout << story_continue << endl;
cin >> placeholder;
cout << "He encountered a feral cat, sleeping silently in the downpour." << endl;
cout << "It's body was stretched along the sidewalk; the man looked at it pityingly." << endl;
cout << "He decided it would be for the best to sling the cat over his shoulder and shelter the creature from the rain." << endl;
cout << story_continue << endl;
cin >> placeholder;
cout << "The cat screeched and proceeded to maul the man to death." << endl;
cout << "fin" << endl;
return 0;
}