纯新手 求教·····
刚看了那个边学边练的教程 尝试写了一下··不知道错在哪里···
// charper1.cpp : Defines the entry point for the console application.
//
#include "stdafx.h"
int main(int argc, char* argv[])
{
int a,b,c,d;
scanf("%d%d%d\n",&a,&b,&c);
d=max(a,b,c);
printf("max=%d\n",max);
}
int max(int x,int y,int z)
{
int o;
if(x>y>z) o=x;
if(y>x>z) o=y;
else o=z;
return(o);
}