max(max(a,b),c)应该怎么用啊

#include<stdio.h>#include<math.h>intmain(){inta,b,c;scanf("%d%d%d",&a,&b,&c);printf("... #include<stdio.h>
#include <math.h>
int main()
{

int a,b,c;
scanf ("%d%d%d",&a,&b,&c);
printf ("%d",a+b+c);
printf ("%.0lf",(a+b+c)/3);
max(max(a,b),c);
return 0;
}

--------------------Configuration: text - Win32 Debug--------------------
Compiling...
book.cpp
C:\Program Files\Microsoft Visual Studio\MyProjects\text\book.cpp(9) : error C2065: 'max' : undeclared identifier
Error executing cl.exe.

book.obj - 1 error(s), 0 warning(s)
展开
 我来答
chenxiao_heng
2010-09-24 · TA获得超过435个赞
知道小有建树答主
回答量:249
采纳率:0%
帮助的人:330万
展开全部
错误原因:该宏没有定义

#include <stdlib.h>

使用__max函数代替max

在stdlib.h中有关max定义如下:

/* Non-ANSI names for compatibility */

#ifndef __cplusplus
#define max(a,b) (((a) > (b)) ? (a) : (b))
#define min(a,b) (((a) < (b)) ? (a) : (b))
#endif
本回答被提问者采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
ASK1810
2010-09-24
知道答主
回答量:16
采纳率:0%
帮助的人:8万
展开全部
"max"没有定义哈!
需要自己写一下。
你是想用max(a,b)选出a,b中的大者吧!
用宏的话可以这样写:
#define MAX(a,b) (a)>(b)?(a):(b)
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式