#include <iostream>
using namespace std;
int main() {
int edad;
cout << "Ingrese su edad: ";
cin >> edad;
switch (edad) {
case 4 ... 12:
cout <<"Niñ@." << endl;
break;
case 13 ... 17:
cout << "Adolescente." << endl;
break;
case 18 ... 59:
cout << "Adulto/a." << endl;
break;
case 60 ... 100:
cout << "Adulto/a Mayor." << endl;
break;
default:
cout << "Edad no válida." << endl;
break;
}
return 0;
}
To embed this program on your website, copy the following code and paste it into your website's HTML: