Guest User

Untitled

a guest
Jul 21st, 2018
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. #include <iostream>
  2. #include <string>
  3. using namespace std;
  4.  
  5. int main() {
  6.  
  7. cout << boolalpha << ("cao" > "gato");
  8. cout << boolalpha << ("cao" < "gato");
  9.  
  10. cout << boolalpha << ("cao" > "cao");
  11.  
  12. cout << boolalpha << ("cao" < "caoo");
  13.  
  14. return 0;
  15.  
  16.  
  17. }
Add Comment
Please, Sign In to add comment