码迷,mamicode.com
首页 > 编程语言 > 详细

C语言实现随机生成0~100的数

时间:2018-05-23 02:16:53      阅读:232      评论:0      收藏:0      [点我收藏+]

标签:time   ios   分享   col   图片   str   com   alt   class   

#include <iostream>
#include <time.h>

int main()
{
    srand((unsigned)time(NULL));//srand()就是给rand()提供种子seed

    for (int i = 0; i < 100; i++)
    {
        int num = rand()%100;//对100取余操作
        printf("第%d次随机生成0~100的数: %d \n",i+1,num);
    }
    printf("\n");

    return 0;
}

 

技术分享图片

 

C语言实现随机生成0~100的数

标签:time   ios   分享   col   图片   str   com   alt   class   

原文地址:https://www.cnblogs.com/chechen/p/9074824.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!