首页 > 其他 > 详细

Qt中使用随机数

时间:2016-04-01 23:34:39      阅读:356      评论:0      收藏:0      [点我收藏+]

新建Empty qmake project,命名为UseRand

UseRand.pro

SOURCES +=     main.cpp

QT += core

main.cpp

#include <QTime>
#include <QTextStream>

const int RAND_POS = 29;
const int DOT_SIZE = 10;

int main()
{
    QTextStream out(stdout);

    QTime time = QTime::currentTime();
    qsrand((uint) time.msec());

    int r = qrand() % RAND_POS;
    int x = (r * DOT_SIZE);

    out << RAND_POS << endl;
    out << x << endl;

    return 0;
}

 

Qt中使用随机数

原文:http://www.cnblogs.com/xuyan505/p/5346566.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!