GRUPO12-SENTENCIA SWITCH

SENTENCIA IF-MACAS GRUPO 12

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

EJEMPLOS DE PROGRAMACION EN C++

3.- REALICE UN PROGRAMA EN C++ QUE SIMULE UN CAJERO AUTOMÁTICO, (RECUERDE QUE SOLO PODRÁ INGRESAR 3 VECES LA CLAVE) Y MUESTRE Y EJECUTE LAS OPCIONES DEPÓSITO, RETIRO , SALDO, SALIR.

4.- REALICE UN PROGRAMA EN C++ QUE REALICE UNA COMPRA Y EJECUTE LOS DESCUENTOS RESPECTIVOS, AL FINALIZAR MUESTRE EL RESULTADO DE CADA DESCUENTO

INTERCAMBIO DE VALORES