码迷,mamicode.com
首页 > 编程语言 > 详细

7.1数组 随机数

时间:2017-03-04 22:23:37      阅读:219      评论:0      收藏:0      [点我收藏+]

标签:color   and   std   生成   time   clu   输出   turn   ret   

随机生成15个1-100的数,存入一维数组,再分三行输出:

 1 #include<stdlib.h>
 2 #include<stdio.h>
 3 #include<time.h>
 4 int main()
 5 {
 6     int a[15];
 7     int i,j;
 8     srand(time(0)); //seed
 9     for (i=1;i<=15;i++)
10         a[i]=rand()%100+1;  //范围
11     for (i=1;i<=3;i++)
12     {
13         for(j=(i-1)*5+1;j<=(i-1)*5+5;j++)
14             printf("%-3d ",a[j]);
15         printf("\n");
16     }
17     return 0;
18 }
 1 #include<stdlib.h>
 2 #include<stdio.h>
 3 #include<time.h>
 4 int main()
 5 {
 6     int a[15];
 7     int i,j;
 8     srand(time(0));
 9     for (i=1;i<=15;i++)
10         a[i]=rand()%100+1;
11     for (i=1;i<=15;i++)
12     {
13         printf("%-3d ",a[i]);
14         if (i%5==0) printf("\n");
15     }
16     return 0;
17 }
25  90  83  76  23  
39  83  98  7   58  
65  51  67  18  99 

 

7.1数组 随机数

标签:color   and   std   生成   time   clu   输出   turn   ret   

原文地址:http://www.cnblogs.com/Bird-Xu/p/6502810.html

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