Qt产生随机数

#include 

QTime time;
time=QTime::currentTime();
qsrand(time.msec()+time.second()*1000);
for(int i=0;i<10000;i++)
{
    int n=qrand()%100;
    double nn=0.01*n;//0到1之间两位小数的随机数
    qDebug()<

 

你可能感兴趣的:(qt,随机数)