1.-REALICE UN PROGRAMA EN C++ QUE PERMITA VISUALIZAR LOS IMPLEMENTOS NECESARIOS PARA LOS SIGUIENTES DEPORTES:
/*1.- REALICE UN PROGRAMA EN C++ QUE PERMITA VISUALIZAR LOS IMPLEMENTOS NECESARIOS PARA LOS SIGUIENTES DEPORTES:
MENÚ DE OPCIONES:
* BASKET
* NATACIÓN
* INDOR*/
#include<iostream>
#include<wchar.h>
#include<locale.h>
using namespace std;
int main(){
setlocale(LC_ALL, "");
cout<<"MENU DE OPCIONES:"<<endl;
cout<<"\t 1)BASQUET"<<endl;
cout<<"\t 2)NATACIÓN"<<endl;
cout<<"\t 3)INDOR"<<endl;
int opcion;
cout<<"ESCOGER EL NÚMERO DEL DEPORTE A VISUALIZAR SUS IMPLEMENTOS:"<<endl;
cin>>opcion;
if(opcion>=1 && opcion<=3 )
{
switch (opcion)
{
case 1:
cout<<"ESCOGIO EL BASQUET DONDE:"<<endl;
cout<<"Se ocupa los implementos como el Balon, Cancha, Tablero, Soportes, Cesta, Marcador, Vestuario."<<endl;
break;
case 2:
cout<<"ESCOGIO LA NATACIÓN DONDE:"<<endl;
cout<<"Se ocupa los implementos como el Traje de baño, Gorro, Toalla, Gafas, Zapatillas, Calcetines de Látex, Tapones de oídos."<<endl;
break;
case 3:
cout<<"ESCOGIO EL INDOR DONDE:"<<endl;
cout<<"Se ocupa los implementos como la Pelota, Cancha, Uniforme, Arcos, Rodilleras, Zapatos de Lona."<<endl;
break;
}
}
else
cout<<"USTED NO ESCOGIO ALGUN DEPORTE."<<endl;
return 0;
}
Comentarios
Publicar un comentario