小楼寂寞新雨月 发表于 2014-9-13 09:40:18

C标准库之数学函数__min

本帖最后由 小楼寂寞新雨月 于 2014-9-13 13:10 编辑

功能:求两个数中的小数

函数原型:type _min(type a,type b);

要求:
函数需要的头文件
__min<stdlib.h>
参数:
参数说明
a进行比较的数
b进行比较的数
返回值:两个数值中比较小的数

举例:#include <stdio.h>
#include <float.h>
#include <ctype.h>
#include <stdlib.h>
int main()
{
double a = 3,b =4, c;                //为变量赋初值
c =__min(a,b);                              //求较小的数
printf("%f\n",c);
}



页: [1]
查看完整版本: C标准库之数学函数__min