Código
/* Está programado en ubuntu, no se si eso canviara algo*/ #include <iostream> #include <cstdlib> using namespace std; int main () { int number = (rand() % 100); int introducedNumber; while (cout << "Try to guess the number: ") { cin >> introducedNumber; if (introducedNumber == number) { cout << "YOU WIN :)" << endl; } if (introducedNumber < number) { cout << "Too low :(" << endl; } if (introducedNumber > number) { cout << "Too High :(" << endl; } } return 0; }
El valor aleatorio siempre es 83, como puedo solucionar eso? Gracias.