当前位置:百问九>百科问答>关于c语言中的rand()

关于c语言中的rand()

2023-05-17 13:30:48 编辑:zane 浏览量:619

关于c语言中的rand()

因为随机数种子不变用srand设置一个不同的随机数种子型旁即可改袜例程/* rand example: guess the number */#include #include #include int main (){ int iSecret, iGuess; /* initialize random seed: */ srand ( time(NULL) ); /* generate secret number: */ iSecret = rand() % 10 + 1; do { printf ("Guess the number (1 to 10): "); scanf ("%d",&iGuess); if (iSecret卜歼橡iGuess) puts ("The secret number is higher"); } while (iSecret!=iGuess); puts ("Congratulations!"); return 0;}

版权声明:文章由 百问九 整理收集,来源于互联网或者用户投稿,如有侵权,请联系我们,我们会立即处理。如转载请保留本文链接:https://www.baiwen9.com/answer/189266.html
热门文章
二维码