//Por Beastieux
#include <iostream>
#include <ctime>
#include <cstdlib>
using namespace std;
int main() {
srand(time(0)); // Inicializar la semilla del generador de números aleatorios
int numeroSecreto = rand() % 100 + 1; // Generar un número aleatorio entre 1 y 100
int intentos = 0;
int intento;
cout << "Bienvenido al juego de adivinar el número!" << endl;
cout << "Estoy pensando en un número entre 1 y 100. Adivina cuál es." << endl;
do {
cout << "Introduce tu intento: ";
cin >> intento;
intentos++;
if (intento < numeroSecreto) {
cout << "El número es mayor. Intenta de nuevo." << endl;
} else if (intento > numeroSecreto) {
cout << "El número es menor. Intenta de nuevo." << endl;
} else {
cout << "¡Felicitaciones! Adivinaste el número en " << intentos << " intentos." << endl;
}
} while (intento != numeroSecreto);
return 0;
}
Pueder ir al artículo principal:
Códigos Sencillos hechos en C++
Thank you for your sharing. I am worried that I lack creative ideas. It is your article that makes me full of hope. Thank you. But, I have a question, can you help me?
Thanks for sharing. I read many of your blog posts, cool, your blog is very good.