题目内容

【填空题】写出下面程序执行后的运行结果____。#include int f1( int x, int y ){ return(x > y ? x : y);} int f2( int x, int y ){ return(x > y ? y : x);} int main(){ int a = 4, b = 3, c = 5, d = 2, e, f, g; e = f2( f1( a, b ), f1( c, d ) ); f = f1( f2( a, b ), f2( c, d ) ); g = a + b + c + d - e - f; printf( "%d,%d,%d", e, f, g ); return(0);}

查看答案
更多问题

【填空题】可以将被调函数中获得的值返回给主调函数的语句是____。

【填空题】写出下面程序执行后的运行结果____。#include void fun( int *a, int i, int j ){ int t; if ( i < j ) { t = a[i]; a[i] = a[j]; a[j] = t; i++; j--; fun( a, i, j ); }} int main(){ int x[] = { 2, 6, 1, 8 }, i; fun( x, 0, 3 ); for ( i = 0; i < 4; i++ ) printf( "%d", x[i] );return(0);}

【填空题】写出下面程序执行后的运行结果____。#include int main(){ int n=0,m=1,x=2; if(!n) x-=1; if(m) x-=2; if(x) x-=3; printf("%d",x); return 0;}

设有程序片段如下:switch(class){case 'A': printf("GREAT!\n");case 'B': printf("GOOD!\n");case 'C': printf("OK!\n");case 'D': printf("NO!\n");default: printf("ERROR!\n");}若class的值为'C',则输出结果是。

答案查题题库