填空题 以下程序运行时输出到屏幕的结果是 1【8】 2 。 #include int fun(int x) {static int c,y; if(c==0) y=1; else y=y+x; c++; return y; } void main3 {int i; for(i=0;i<2;i++) printf("%d",fun(2)); }
  • 1、
【正确答案】 1、13    
【答案解析】