-
Lenguaje
C
-
Descripción
Generar números aleatorios entre 1 y 10.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#include <stdio.h>
#include <stdlib.h>
#include <conio.h>
#include <time.h>
int main (void)
{
int numero_aleatorio;
char tecla_repetir;
srand ((unsigned) time (NULL));
do {
system ("cls");
numero_aleatorio=1+rand()%10;
printf ("Valor de numero aleatorio: %d\n", numero_aleatorio);
putchar ('\n');
printf ("\250Deseas repetir el proceso? (S/N): ");
do {
tecla_repetir = (char) getch();
} while (tecla_repetir!='s' && tecla_repetir!='n' && tecla_repetir!='S' && tecla_repetir!='N');
putchar ('\n');
} while (tecla_repetir=='s' || tecla_repetir=='S');
return EXIT_SUCCESS;
}
#include <stdlib.h>
#include <conio.h>
#include <time.h>
int main (void)
{
int numero_aleatorio;
char tecla_repetir;
srand ((unsigned) time (NULL));
do {
system ("cls");
numero_aleatorio=1+rand()%10;
printf ("Valor de numero aleatorio: %d\n", numero_aleatorio);
putchar ('\n');
printf ("\250Deseas repetir el proceso? (S/N): ");
do {
tecla_repetir = (char) getch();
} while (tecla_repetir!='s' && tecla_repetir!='n' && tecla_repetir!='S' && tecla_repetir!='N');
putchar ('\n');
} while (tecla_repetir=='s' || tecla_repetir=='S');
return EXIT_SUCCESS;
}