C++中 min函数怎么使用? 就是那个 头文件algorithm里面的
展开全部
VC里面好象不在你说的这个头文件里。#include<stdio.h>
#include <windows.h>
#include <WINDEF.H>
void main()
{
int i, i1, i2;
i1 = 3;
i2 = 5;
i = min(i1, i2);
printf("min of i1 & i2 = %d\n", i);
}
#include <windows.h>
#include <WINDEF.H>
void main()
{
int i, i1, i2;
i1 = 3;
i2 = 5;
i = min(i1, i2);
printf("min of i1 & i2 = %d\n", i);
}
追问
可以用min去求数组或者别的什么里面的最小值么
追答
当然可以啊... 不过VC中的min只能是两个变量中的较小的那个,你数组元素多的话要逐个比较。
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
TableDI
2024-07-18 广告
2024-07-18 广告
VLOOKUP是Excel中用于垂直查找的函数,其基本用法包括四个参数:1. 查找值:即在数据表首列中需要搜索的值。2. 数据表:包含查找值的单元格区域或数组。3. 返回值所在列数:指定返回查询区域中第几列的值。4. 查找方式:选择精确匹配...
点击进入详情页
本回答由TableDI提供
展开全部
函数原型:
min(value1, value2 );
参数:
value1
Specifies the first of two values.
value2
Specifies the second of two values.
返回值:
The return value is the smaller of the two specified values.
备注:
#define min(a, b) (((a) < (b)) ? (a) : (b))
min(value1, value2 );
参数:
value1
Specifies the first of two values.
value2
Specifies the second of two values.
返回值:
The return value is the smaller of the two specified values.
备注:
#define min(a, b) (((a) < (b)) ? (a) : (b))
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
自已可以定义一个:
#define minv(x,y) ( (x>y)?y:x)
#define minv(x,y) ( (x>y)?y:x)
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
= =!min?得需要调用函数吧 algorithm是sort的头文件吧。。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询