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

彩票随机数

时间:2016-04-17 23:26:17      阅读:193      评论:0      收藏:0      [点我收藏+]

标签:彩票

[root@svr7 bin]# cat lottery.c 

#include <stdio.h>

#include <stdlib.h>

#include <time.h>

int main() {

    int lottery[7]={},num = 0;

    srand(time(0));

    for (num=0;num<=6;num++){

 lottery[num] =rand() % 36 + 1;

}

    for (num=0;num<=6;num++){

printf("%d ",lottery[num]);

}

    printf("\n");

return 0;

}

[root@svr7 bin]# gcc lottery.c 

[root@svr7 bin]# ./a.out 

27 33 32 23 23 23 13 


本文出自 “Linux运维之道” 博客,谢绝转载!

彩票随机数

标签:彩票

原文地址:http://sigelinux.blog.51cto.com/8875874/1764805

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