写出运行结果
main( ) { int a=1, b=2, c; c=max(a, b); printf("max is %d\n",c); } max(int x, int y) { int z; z=(x>y)? x:y; return(z); }
Copyright ©