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.
// Programa simulador de cajero automatico
#include<iostream>
using namespace std;
int main()
{
int clave=2020,opcion;
cout<<"Introdusca su clave: ";cin>>clave;
if(clave==2020){
cout<<"\tBienvenido a su cajero automatico"<<endl;
cout<<"1. Ingresar dinero "<<endl;
cout<<"2. Retirar dinero "<<endl;
cout<<"3. Salir"<<endl;
cout<<"Opcion: ";
}
else
{
cout<<"ingrese nuevamente su clave: ";cin>>clave;
if(clave==2020){
cout<<"\tBienvenido a su cajero automatico"<<endl;
cout<<"1. Ingresar dinero "<<endl;
cout<<"2. Retirar dinero "<<endl;
cout<<"3. Salir"<<endl;
cout<<"Opcion: ";
}
else
{
cout<<"ingrese nuevamente su clave: ";cin>>clave;
if(clave==2020){
cout<<"\tBienvenido a su cajero automatico"<<endl;
cout<<"1. Ingresar dinero "<<endl;
cout<<"2. Retirar dinero "<<endl;
cout<<"3. Salir"<<endl;
cout<<"Opcion: ";
}
}
}
return 0;
}
Comentarios
Publicar un comentario