Advertisement
SteelK

Untitled

Nov 18th, 2016
100
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.39 KB | None | 0 0
  1. #include <iostream> // библеотека ввода\вывода
  2. #include <cmath> // библеотека математических функций
  3.  
  4. using namespace std;
  5.  
  6. int main()
  7. {
  8.     setlocale(0, "");
  9.     char oneStr[5];
  10.     cout << ('Аня' > 'Таня') << endl;
  11.     cout << ("Аня" > "Таня") << endl;
  12.    
  13.     cout << (int)'Аня' << endl << (int)'Таня' << endl;
  14.     return 0;
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement