dimanche 1 décembre 2019

I sometimes get the same random numbers. How can I fix this?

int main(){

int numbers[6];

srand(time(0));

    for(int j=1;j<=6;j++)
    {

     numbers[j]=rand()%10;
     printf("\n%d",numbers[j]);
    }

}




Aucun commentaire:

Enregistrer un commentaire