Come creare un numero Random

di il
2 risposte

Come creare un numero Random

Salve a tutti!!!!!!!!

Come faccio a creare un numero random in C++?????

ho provato con la funzione rand() ma restituisce sempre lo stesso numero.......

Qualcuno può aiutarmi?????

2 Risposte

  • Re: Come creare un numero Random

    Devi inserire all'inizio
    srand(time(0));
    esempio:

    #include <windows.h>
    #include <stdio.h>
    #include <time.h>

    int main(int argc, char *argv[])
    {
    srand(time(0));
    for(int i=0,c;i<3;i++)
    {
    c = rand();
    printf("%d\t",c);
    }


    system("PAUSE");
    return 1;
    }
  • Re: Come creare un numero Random

    Grazie 1000!!!!!!!!!!!!!
Devi accedere o registrarti per scrivere nel forum
2 risposte