#include<stdio.h>
int main()
{
int max(int x,int y,int z);
int a,b,c,d;
scanf("%f,%f",&a,&b,&c);
c=max(a,b,c);
printf("max=%d\n",d);
return 0;
}
int max(int x,int y,int z)
{int w;
if(x>y>z)w=x;
else w=z;
return(w);
}
没有错误没有警告,就是运行不了???什么问题
#include <cstdio>
#include <cstdlib>
int max(int,int,int);
int main()
{
int a,b,c;
scanf("%d,%d,%d",&a,&b,&c);
printf("max num is %d",max(a,b,c));
return 0;
}
int max(int a,int b,int c)
{
return (a>b?a:b)>c?(a>b?a:b):c;
}
扩展资料
#include <iostream>
using namespace std;
int main()
{int a,b,c,t;
cin >> a>>b>>c ;
if ( a > b ){ //交换两数
t=a;a=b;
b=t;
}//到此,保证a<=b
if ( c < a ) //小于小的,为最小cout << c << " " << a << " " << b <<endl ;
else if ( c>b ) //大于大的,为最大
cout << a << " " << b << " " << c <<endl ;else
cout << a << " " << c << " " << b <<endl;return 0;
}参考资料:百度百科 C语言函数
这个程序可以以这样的思路进行编写,首先固定一个数与其他的两个数进行比较,如果另两个数比这个数大,则将较大的数赋值给这个固定的数,最后输出。
示例代码如下:
#include <iostream>