this : int max( int x,int y) { return(x> y?x:y); }
main( ) { int m; int a=1; int b=2; m=max(a,b); }
发表时间:2003年5月31日12:15:41