• 2021-04-14
    请写出以下程序的运行结果()
    intmain()
    {
    voidincrement();
    increment();
    increment();
    increment();
    return0;
    }
    voidincrement()
    {
    staticintx=0;
    x++;
    printf("%d\n",x);
    }

  • 1 2 3

    内容

    • 0

      以下程序的输出结果是( ) #include int main(){ int i,j,x=0; for(i=0;i<2;i++){ x++; for(j=0;j<3;j++) { if(j%2) continue; x++; } x++; } Printf(“x=%d\n”,x); return 0; }

    • 1

      下面程序的输出结果是________。#include&lt;stdio.h&gt;intmain(void){inti,j,x=0;for(i=0;i&lt;2;i++){x++;for(j=1;j&lt;=3;j++{if(j%2)continue;x++;}x++;}printf(“%d”,x);return0;}? 8|4|10|6

    • 2

      请写出以下程序的运行结果#include int main() { printf(Hello World! ); return 0; }

    • 3

      以下程序的运行结果是( ) int main() { int x=2,y=3,z=1; printf("%d,%d\n",(x++,++y),z+2); return 0; }

    • 4

      【填空题】写出下面程序执行后的运行结果____。#include <;stdio.h>;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;}