Partager via


couche-point

Génère un nombre pseudo-aléatoire compris.Un plus version sécurisée de cette fonction est disponible, consultez rand_s.

int rand( void );

Valeur de retour

rand retourne un nombre pseudo-aléatoire compris, comme décrit ci-dessus.Il n'existe aucun retour d'erreur.

Notes

La fonction d' rand retourne un entier pseudo-aléatoire compris dans la plage 0 à RAND_MAX (32767).Utilisez la fonction de srand pour amorcer le concepteur de pseudo-aléatoire-numéro avant d'appeler rand.

Configuration requise

routine

en-tête requis

rand

<stdlib.h>

Pour des informations de compatibilité supplémentaires, consultez compatibilité dans l'introduction.

Exemple

// crt_rand.c
// This program seeds the random-number generator
// with the time, then exercises the rand function.
//

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

void SimpleRandDemo( int n )
{
   // Print n random numbers.
   int i;
   for( i = 0; i < n; i++ )
      printf( "  %6d\n", rand() );
}

void RangedRandDemo( int range_min, int range_max, int n )
{
   // Generate random numbers in the half-closed interval
   // [range_min, range_max). In other words,
   // range_min <= random number < range_max
   int i;
   for ( i = 0; i < n; i++ )
   {
      int u = (double)rand() / (RAND_MAX + 1) * (range_max - range_min)
            + range_min;
      printf( "  %6d\n", u);
   }
}

int main( void )
{
   // Seed the random-number generator with the current time so that
   // the numbers will be different every time we run.
   srand( (unsigned)time( NULL ) );

   SimpleRandDemo( 10 );
   printf("\n");
   RangedRandDemo( -100, 100, 10 );
}
  

Équivalent .NET Framework

System : : classe aléatoire

Voir aussi

Référence

Support à virgule flottante

srand

rand_s