Generation of random numbers in C Language

Source: Internet
Author: User
Tags usleep

To testProgramTo generate random numbers, find a demo that many people use on the Internet and find that if many random numbers are generated consecutively, most of them are duplicated because they are seed based on the system time, I made a small modification to the program to generate a real random number. After testing, the program rarely repeats.

# Include <stdio. h>
# Include <time. h>
# Include <sys/STAT. h>

# Deprecision max 100

Int my_rand (INT base );

Int
Main ()
{
While (H <30)
{
Day = my_rand (100 );
Cout <day <Endl;
H ++;
Usleep (1000 );
}

Return 0;
}

Int
My_rand (INT Base)
{
Int I = 0;
Usleep (10 );
Srand (unsigned) Time (null) + rand (); // Add a random number to the seed
 
While (I <= 0)
{
I = rand () % base;

}
Return I;
}

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.