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

生成随机数(C++)

时间:2019-12-25 01:56:27      阅读:94      评论:0      收藏:0      [点我收藏+]

标签:col   prototype   生成   main   time   stream   alt   http   lib   

// generate random number

#include <iostream>
#include <iomanip>
#include <cstdlib> // contains function prototype for rand()

using namespace std;
int main()
{
    for (int i = 1; i <= 20; i++) // loop for 20 times
    {
        cout << setw(10) << 1 + rand()%6; // generate numbers between 1 and 6
        if (i%5 == 0) // if have 5 numbers
        {
            cout << endl; // return the nextline

        }

    }


    return 0;
}

技术图片

生成随机数(C++)

标签:col   prototype   生成   main   time   stream   alt   http   lib   

原文地址:https://www.cnblogs.com/zijidefengge/p/12094368.html

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