• Lenguaje

    C

  • Descripción

    Imprimir 5 números aleatorios.

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#include <stdio.h>
#include <stdlib.h>
#include <time.h>

int main (void)
{
    int i, numero;
    srand ((unsigned) time (NULL));
    for (i=1; i<=5; i++)
    {
        printf ("PROCESO %d\n", i);
        numero=rand()%65536-32768;
        printf ("Valor de numero: %d\n", numero);
        putchar ('\n');
    }
    return EXIT_SUCCESS;
}