//Ejemplo de Números Aleatorios con el Comando RAND( ) Prof

Anuncio
//Ejemplo de Números Aleatorios con el Comando RAND( )
Prof. Gregory Rivera
#include <stdio.h>
#include <stdlib.h>
#include <time.h>
int main (){
int a, b;
/* inicializa random: */
srand ( time(NULL) );
/* genera un número: */
a = rand() % 10 + 1;
do {
printf ("Adivina el Número Comprendido (1 hasta 10): ");
scanf ("%d",&b);
if (a<b) printf ("El número secreto es menor a: %d\n",b);
else if (a>b) printf ("El número secreto es mayor a: %d\n",b);
}while (a!=b);
printf ("\nFELICITACIONES ENCONTRÓ EL NÚMERO GANADOR!!! %d\n",a);
return 0;
}
Descargar