标签:
随机数滚动发生器
1 #include <stdio.h> 2 #include <Windows.h> 3 #include <ctime> 4 #include <process.h> 5 bool g_run = true; 6 void userInput(void*){ //监视输入的线程函数 7 while(true){ 8 if(getchar() == ‘\n‘) 9 g_run = !g_run; 10 Sleep(10); 11 } 12 } 13 int main(){ 14 srand(time(0)); //随机数种子 15 _beginthread(userInput, 0, NULL); //开线程 16 while(true){ 17 if(g_run){ 18 system("cls"); //清屏 19 int t = rand() % 1000+ 1; //1-1000的随机数 20 printf("\n %d",t); //输出 21 } 22 Sleep(50); //延迟50毫秒 23 } 24 return 0; 25 }
标签:
原文地址:http://www.cnblogs.com/dirge/p/5601522.html