有如下程序,则其输出结果为()。#include void ...0; } printf(%d ,x);}
举一反三
- 以下程序运行时,输入的x值在范围时才会有输出结果。 #include void ...0) printf("%d",x); }
- 下面程序的输出结果是_______。 #include void increment(void); int main(void) { increment(); increment(); increment(); return 0; } void increment(void) { int x = 0; x += 1; printf("%d ", x); }
- 下述程序的输出结果是_______。 #include <stdio.h> void main() { int x=8; for( ; x>0; x--) { if(x%3) {printf("%d,",x--); continue; } printf("%d,",--x); } }
- 现有如下程序 #include int fun(int x) { printf("x=%d\n",++x); } int main() { fun(12+5); return 0; } 则程序的输出结果是
- 写出下列程序的输出结果( )。#include <stdio.h>void fun1( ){ int x=5; printf("x=%d\n",x);}void fun2(int x){ printf("x=%d\n", ++x);}void main( ){ int x=2; fun1( ); fun2(x); printf("x=%d\n", x);}