Advertisement
Guest User

Untitled

a guest
May 20th, 2017
48
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. #include <iostream>
  2. #include <string>
  3.  
  4. int main(void)
  5. {
  6.     using std::cout;
  7.     using std::cin;
  8.     using std::string;
  9.     int buddies;
  10.     int afterBattle;
  11.     string exit;
  12.     cout << "So get this shit... your a fucking pirate."
  13.         << " Cool, right?\n"
  14.         << "Yeah, its off the fuckin hizzook. So anyway,"
  15.         << " your walking through ghetto\n pirateland with"
  16.         << " your gangsta pirate buddies.\n"
  17.         << "...How many of them are with you again?"
  18.         << " (choose a number between 11 and 115)\n";
  19.     cin >> buddies;
  20.     afterBattle = 1 + buddies - 10;
  21.     cout << "Oh shit, thats right... there were"
  22.         << buddies + 1 << " of you silly gangsta pirates.\n"
  23.         << "So anyway, there you guys are, minding your own buisiness,\n"
  24.         << "when these asshole ninjas fall out of the sky and start\n"
  25.         << "beating the shit out of you with their ninja skills.\n"
  26.         << "Luckily, since your gangsta pirates, your fuckin' awesome\n"
  27.         << "and you kill the shit out of all the gay ninjas."
  28.         << "Sadly, 10 of your buddies were killed in battle, leaving\n "
  29.         << afterBattle << "of you left.\n";
  30.     cout << "So after the battle, your feeling pretty pumped up and\n"
  31.         << "convince your friends to pickpocket some hookers.\n"
  32.         << "After beating them down and taking the money they were\n"
  33.         << "hiding in their vaginas, you and your buddies manage to\n"
  34.         << "come up with 107 euros (ghetto pirate land is in Euorpe),\n"
  35.         << "which you all decide to split evenly. leaving you each with "
  36.         << (107 / afterBattle) << " euros each.\n";
  37.     cout << "After you split them evenly, there is a remaining "
  38.         << (107 % afterBattle) << "euros.\n"
  39.         << "You challenge your bud lights to fight for them, which they accept.\n"
  40.         << "Sadly, you are brutally beaten and die a painful death.\n"
  41.         << "Moral of the story: idklololol";
  42.     system("pause>nul");
  43.     return 0;
  44. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement