Advertisement
Guest User

Untitled

a guest
Apr 24th, 2017
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.30 KB | None | 0 0
  1. int main()
  2. {
  3.     cout << "hello world";
  4.     string x = "fuck";
  5.     string y = "you";
  6.     char n = '\n';
  7.  
  8.     cout << n << x << ' ' << y;
  9.  
  10.     if (y == "fuck") {
  11.         cout << "Bitch";
  12.     }
  13.     else {
  14.         cout << "shit";
  15.     }
  16.  
  17.     if (x == "fuck") {
  18.         cout << "Kappa";
  19.     }
  20.     else {
  21.         cout << "poro";
  22.     }
  23.  
  24.     return 0;
  25. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement