0
Puedo hacer un menú con solo if ?
Me encantaría saber si puedo hacer un menú con if o existe otro comando que me ayude en ello.
3 ответов
+ 2
Sí se puede hacer con if/else, pero para menus es mejor utilizar el switch..breve ejemplo del switch:
int opcion;
cin >> opcion;
switch (opcion)
{
case '1':
cout<<"opc. num. 1 del menu..\n";
break;
case '2':
cout<<"opc. num 2 del menu..\n";
break;
default:
cout<<"esto sirve para las opciones invalidas del menu..\n";
break;
}
0
Pls ask in English. This way people are much more likely to answer.
0
...also if everyone is doing this, the forum gets sectioned into many different languages... I guess many questions would be some kind of Indian.