fork download
  1. #include <iostream>
  2. using namespace std;
  3. int main () {
  4. int age;
  5. float height;
  6. cout<<"Enter your height"<<endl;
  7. cin>>height;
  8. cout<<"Enter your age"<<endl;
  9. cin>>age;
  10. if (age>=18)
  11. {
  12. cout<<"you are aد adult"<<endl;
  13. }
  14. else {
  15. cout<<"you are a minor"<<endl;
  16. }
  17. return 0;
  18. }
Success #stdin #stdout 0s 5328KB
stdin
Standard input is empty
stdout
Enter your height
Enter your age
you are a minor