C的随机数用法

Posted saintdingspage

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了C的随机数用法相关的知识,希望对你有一定的参考价值。

rand()

#include <stdio.h>
#include <stdlib.h>
int main()
{
    for (int i = 0; i < 10; i++)
    {
        printf("%d
",rand());
    }
    system("pause");
    return EXIT_SUCCESS;
}

技术分享图片

#include <stdio.h>
#include <stdlib.h>
int main()
{
    for (int i = 0; i < 10; i++)
    {
        printf("%d
",rand()%10);
    }
    system("pause");
    return EXIT_SUCCESS;
}

技术分享图片

 指定随机数的生成范围例如生成8以内的随机数---只不过....程序每次运行时都是生成这几个货

#include <stdio.h>
#include <stdlib.h>
int main()
{
    srand(8);
    for (int i = 0; i < 10; i++)
    {
        printf("%d
",rand()%10);
    }
    system("pause");
    return EXIT_SUCCESS;
}

技术分享图片

 

#include <stdio.h>
#include <stdlib.h>
#include <time.h>
int main()
{
srand((unsigned)time(NULL));
for (int i = 0; i < 10; i++)
{
printf("%d ",rand()%100+21);
}
system("pause");
return EXIT_SUCCESS;
}

技术分享图片技术分享图片技术分享图片

 













以上是关于C的随机数用法的主要内容,如果未能解决你的问题,请参考以下文章

c_cpp kstat_lookup和kstat_read用法的示例kstat片段

PHP 代码片段

C#-WebForm-★内置对象简介★Request-获取请求对象Response相应请求对象Session全局变量(私有)Cookie全局变量(私有)Application全局公共变量Vi(代码片段

C的随机数用法

播放随机声音而不重复

Numpy用法详解