码迷,mamicode.com
首页 > 其他好文 > 详细

rand

时间:2019-12-04 01:38:29      阅读:94      评论:0      收藏:0      [点我收藏+]

标签:and   return   生成   设置   main   启动   class   clu   i++   

 

#include <stdio.h>
#include <stdlib.h>

int main()
{
 srand(100);  //设置种子,种子一样,每次启动程序时生成的数也一样
 int i;
 int num;
 for(i=0; i<10; i++)
 {
  num = rand();
  printf("%d\t", num);
 }
 return 0;
}

 

rand

标签:and   return   生成   设置   main   启动   class   clu   i++   

原文地址:https://www.cnblogs.com/xumaomao/p/11980302.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!