编写程序从三个输入的整数中找到最大数。用函数和带参的宏来实现
3个回答
展开全部
#include <stdio.h>
#define MAX2(x,y) (x)>(y)?(x):(y)
int max(int a,int b, int c)
{
int t1 = MAX2(a, b);
int t2 = MAX2(b, c);
int t3 = MAX2(t1, t2);
return t3;
}
void main()
{
int m = max(10, 25, 60);
printf("%d",m);
}
#define MAX2(x,y) (x)>(y)?(x):(y)
int max(int a,int b, int c)
{
int t1 = MAX2(a, b);
int t2 = MAX2(b, c);
int t3 = MAX2(t1, t2);
return t3;
}
void main()
{
int m = max(10, 25, 60);
printf("%d",m);
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
#define MAX(x,y) (x)>(y)?(x):(y)
void main()
{
int a,b,c;
..
a=MAX(b,c);
..
}
展开后就是a=(b>c)?(b):(c)
void main()
{
int a,b,c;
..
a=MAX(b,c);
..
}
展开后就是a=(b>c)?(b):(c)
参考资料: C程序设计 谭浩强
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
#include<iostream>
using namespace std;
#define MAX(x, y) x>y?x:y
int main()
{
int a;int b;int c;
int temp;
cin>>a>>b>>c;
temp=MAX(a,b);
temp=MAX(temp,c);
cout<<temp<<endl;
return 0;
}
using namespace std;
#define MAX(x, y) x>y?x:y
int main()
{
int a;int b;int c;
int temp;
cin>>a>>b>>c;
temp=MAX(a,b);
temp=MAX(temp,c);
cout<<temp<<endl;
return 0;
}
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询