码迷,mamicode.com
首页 > 移动开发 > 详细

ios入门之c语言篇——基本函数——1——随机数生成

时间:2015-07-25 17:59:33      阅读:135      评论:0      收藏:0      [点我收藏+]

标签:

1、随机数函数

 

参数返回值解析:

 

参数:

a:int,数字范围最小值;

b:int,数字范围最大值;

 

返回值:

1:闰年;

0:非闰年;

备注:

a-b的绝对值不能超过int的最大值(65535);

头文件:

time.h  、stdlib.h;

技术分享
#include <stdio.h>

#include <time.h>

#include <stdlib.h>

int randomnum(int a,int b)

//返回a-b(包含a和b)之间的整数

srand((unsigned)time(NULL));

//此句仅需主函数出现一次

{

    int cha=b-a+1; 

    int temp=rand()%cha;

    return temp+a;

 

}
View Code

 

ios入门之c语言篇——基本函数——1——随机数生成

标签:

原文地址:http://www.cnblogs.com/kongkaikai/p/4676159.html

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