刚学,懂的进来看下
为什么输入任意俩个数出来的都是4198405,这个数是什么意思.#include "stdafx.h"
int main(int argc, char* argv[])
{
int x,y;
scanf("%d %d",&x,&y);
int max(int a,int b);
printf("max=%d\n",max);
return 1;
}
int max(int a,int b)
{
int temp;
if(a>b)
temp=a;
else
temp=b;
return temp;
}