C language implementation randomly generated 0 or 1

Source: Internet
Author: User

The RAND function requires a system-supplied seed to generate a sequence of pseudo-random numbers before generating a random number, and Rand produces a series of random numbers based on the value of the seed. If the seed provided by the system does not change, the sequence of pseudo-random numbers generated by each call to the RAND function is the same. Srand (unsigned seed) alters the seed value provided by the system through the parameter seed, which allows the sequence of pseudo-random numbers generated by each call to the RAND function to be different, thus achieving a true "random" meaning. System time can often be used to change the system's seed value, which is srand, which can provide different seed values for the RAND function, resulting in a different sequence of random numbers.

#include <iostream>#include<time.h>//randomly generated 0 or 1intMain () {srand (unsigned) time (NULL));//Srand () is to give rand () seeds seed//100 Random builds 0 or 1     for(inti =0; I < -; i++)    {        intnum = rand ()%2;//Yes, 2 gets 0 or 1 .printf ("number of randomly generated%d times:%d \ n", i+1, num); } printf ("\ n"); return 0;}

Operation Result:

C language implementation randomly generated 0 or 1

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.