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

random

时间:2018-10-07 17:57:08      阅读:128      评论:0      收藏:0      [点我收藏+]

标签:clu   1.0   stdio.h   none   div   random   turn   sig   out   

 1 #include <stdio.h>
 2 #include <stdlib.h>
 3 #include <time.h>
 4 int main()
 5 { int i,number;
 6 double out;
 7 srand((unsigned) time(NULL)); 
 8 for (i=0; i<50; i++)
 9 {
10 number = rand() % 101; 
11 out=number*1.0;
12 printf("%f ", out);
13 }
14 return 0;
15 }

 

random

标签:clu   1.0   stdio.h   none   div   random   turn   sig   out   

原文地址:https://www.cnblogs.com/DixinFan/p/9750607.html

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