#include <cstdlib>
#include <iostream>
#include <iomanip>
using namespace std;
int Puntaje=0,PuntajeMax=0,Nivel=1;
int main(int argc, char *argv[])
{
int salir=0;
srand(time(0));
int Secreto=0,Usuario,intentos=0;
bool Gano=false;
while(salir==0)
{
Secreto=1+rand()%(5*Nivel);
intentos=0;
Gano=false;
while(intentos<7&&Gano==false)
{
cout << "\n\nIntroduzca un Numero:";
cin >>Usuario;
cout << endl;
if(Usuario>Secreto)
cout << "Muy Grande, intenta con uno mas bajo.!\n";
else if(Usuario<Secreto)
cout << "Muy chico, intenta con uno mas Grande.!\n";
else if(Usuario==Secreto)
{cout << "\n\nFelicidades has ganado..!"<<endl;
Gano=true;
Puntaje+=50;
cout << "Puntaje="<<Puntaje<<endl<<endl<<endl;
if(!(Puntaje % 100)&&Puntaje!=PuntajeMax)
{
PuntajeMax=Puntaje;
Nivel+=1;
cout << setfill ('*')<<setw(10)<<"*"<<"Aumentado Nivel a:"<<Nivel<< setfill ('*')<<setw(10)<<"*"<<endl<<endl<<endl;
}
}
intentos++;
}
}
system("PAUSE");
return EXIT_SUCCESS;
}
No hay comentarios:
Publicar un comentario