예를들어서

srand((unsigned int)time(NULL));

while (true){


int a= rand()%201;

cout << a << endl;

Sleep(5000);

}


이렇게해두면 a값이 나오는게 어느정도 규칙적임? 아니면 계산하는데 걸리는 자잘한 시간같은거 차이에 의해 달라짐?

둘다 시간단위라서 애매하네