Advertisement
Evgeniy175

Untitled

Nov 17th, 2014
18
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.33 KB | None | 0 0
  1. #include <iostream>
  2. #include <string>
  3. #include "windows.h"
  4. using namespace std;
  5. int main()
  6. {      
  7.     setlocale(LC_ALL, "Russian");  
  8.     string M, a1="J";
  9.     cout << "Введи, блеать ";
  10.     getline(cin, M);
  11.     if (M==a1)
  12.     {
  13.         cout << "\nахахах, блеать\n\n";
  14.     }
  15.     else cout << "\nлох\n\n";
  16.     system("pause");
  17.     return 0;
  18. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement