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

C++ 随机数的生成

时间:2020-01-10 12:21:26      阅读:68      评论:0      收藏:0      [点我收藏+]

标签:mes   code   time   space   col   for   ++   技术   unsigned   

此文件是随机生成10个0~100的数

#include <iostream>
#include <ctime>
#include <cstdlib>
using namespace std;

int main()
{
    int i,j;
    srand((unsigned)time(NULL));  //生成随机种子
    for(i=0;i<10;i++)
    {
        j = rand()%100;  //指定生成随机数的范围为0~100
        cout<<j<<endl;
    }
}

运行结果:

技术图片

C++ 随机数的生成

标签:mes   code   time   space   col   for   ++   技术   unsigned   

原文地址:https://www.cnblogs.com/caozewen/p/12175250.html

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