Advertisement
Guest User

Untitled

a guest
Jan 22nd, 2016
133
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.57 KB | None | 0 0
  1. int main() {
  2.  
  3. cout << " - BlackJack - \n LIRIK: I will be your dealer, Boro. \n Are you ready to play? \n \n < ENTER YES / NO > ";
  4. string startgame;
  5. cin >> startgame;
  6. if (startgame == "YES") {
  7.  
  8. }
  9. else if (startgame == "NO") {
  10. cout << "\n \n LIRIK: Alright, Boro. Fuck you then. \n Just thought you wanted some money, apparently not. \n \n Peace b****. \n \n \n";
  11. }
  12. else {
  13. cout << "\n \n LIRIK: That's not what I f***ing asked you ****. Answer the f***ing question. \n \n < ENTER YES / NO >";
  14. cin >> startgame;
  15. }
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement