fork download
  1. // Age identity
  2.  
  3. #include <iostream>
  4.  
  5. using namespace std;
  6.  
  7. int main ()
  8. {
  9. int age;
  10.  
  11. cout << "Please enter your age.\n";
  12. cin >> age;
  13. cout << age << endl;
  14. cin.get ();
  15.  
  16. if ( age < 21 )
  17. {
  18. cout << "Absolutely no minors allowed! Get the FUCK OUT MY BAR!!!\n";
  19. }
  20. else if ( age == 21 )
  21. {
  22. cout << "You're Ok.\n";
  23. }
  24. else
  25. {
  26. cout << "Damn... You could've fooled me.\n";
  27. }
  28. }
  29.  
Success #stdin #stdout 0.02s 2728KB
stdin
Standard input is empty
stdout
Please enter your age.
-1215696928
Absolutely no minors allowed! Get the FUCK OUT MY BAR!!!