Olá galerinha...
Att #M0rph... ^^
Código:
#include <cstdlib> #include <iostream> #include <ctime> using namespace std; int main() { int ale, num, tentativas; cout << "---------------------------------------------------------------" << endl; cout << "-----------------By-#M0rph-WCG_147-0KaL------------------------" << endl; cout << "-------------------------WCGroup-------------------------------" << endl; cout << "---------------------------------------------------------------" << endl; cout << " Digite um numero de 0 a 99" << endl; cin >> num; srand(time(NULL)); ale=rand()%100; while(num!=ale) { if(num<ale) { tentativas++; system("cls"); cout << "ops. numero menor, aumente um pouco" << endl; cout << "Informe outro numero inteiro de 0 ate 99\n" << endl; cin >> num; } else { tentativas++; system("cls"); cout << "ops. numero maior, diminua um pouco\n\n" << endl; cout << "Informe numero inteiro de 0 ate 99\n" << endl; cin >> num; } } cout << "Numero correto " << ale << ", quantidade de tentativas " << tentativas << endl; system("pause"); return 0; }
Att #M0rph... ^^