6.以下程序的运行结果是_____. #include<stdio.h> main() {int a=1,b=2,c; c=max(a,b); printf("max is %

日期:2018-03-29 09:43:42 人气:2

6.以下程序的运行结果是_____. #include<stdio.h> main() {int a=1,b=2,c; c=max(a,b); printf("max is %

#include main() {int a=1,b=2,c; int max(int x,int y);//函数申明 c=max(a,b); printf("max is %d\n",c); } int max(int x,int y)//有返回值的 {int z; //定义的z z=(x>y)?x:y; return(z); } 结果是max is
    A+
热门评论