You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
cout << "Ingrese su edad: ";
cin >> edad;
if (edad >= 18) {
cout << "Usted es mayor de edad." << endl;
} else {
cout << "Usted es menor de edad." << endl;
}
return 0;