728x90

Qt 5에서는 QRandomGenerator를 사용하면 되지만 Qt 4에는 없으므로 간단하게 qsrand를 사용합니다.

qsrand(QTime::currentTime().msec());
int nRand = qrand() % 11;

nRand 값은 0 ~ 10의 값을 가지게 됩니다.

728x90

+ Recent posts