Advertisement
Frinom

Untitled

Nov 5th, 2017
107
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.69 KB | None | 0 0
  1. #include <iostream>
  2. #include <conio.h>
  3. #include <string>
  4.  
  5. using namespace std;
  6.  
  7. int main() {
  8.     string str;
  9.     setlocale(LC_ALL, "Russian");
  10.     cout << "Че, Саня, ЛГБТ (Ониме)?\n";
  11.  
  12.     getline(cin, str);
  13.  
  14.     if (str == "Ofc")
  15.     {
  16.         system("color B");
  17.         system("cls");
  18.         cout << "Аниме :^)";
  19.     }
  20.     else
  21.     {
  22.         system("cls");
  23.         cout << ":^(";
  24.     }
  25.     cout << endl;
  26.     cout << endl;
  27.     cout << endl;
  28.     cout << endl;
  29.     cout << endl;
  30.     cout << "//////////////////////" << endl;
  31.     cout << "//  Code by Frinom  //" << endl;
  32.     cout << "//////////////////////" << endl;
  33.     _getch();
  34.     return 0;
  35. }
  36.  
  37.  
  38.  
  39.  
  40. //////////////////////////
  41. //  Code by Frinom 😎  //
  42. /////////////////////////
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement