fork download
  1. /******************************************************************************
  2.  
  3. Welcome to GDB Online.
  4. GDB online is an online compiler and debugger tool for C/C++.
  5. Code, Compile, Run and Debug online from anywhere in world.
  6.  
  7. *******************************************************************************/
  8. #include <iostream>
  9. using namespace std;
  10. int main()
  11. {
  12. int age;
  13. cout << "Please enter your age: " << endl;
  14. cin >> age;
  15.  
  16. if (12 < age < 20)
  17. cout << "Hello teenager!"<<endl;
  18.  
  19. else cout << "Hello" << endl;
  20.  
  21. return 0;
  22. }
Success #stdin #stdout 0.01s 5320KB
stdin
12
stdout
Please enter your age: 
Hello teenager!