填空题 下面程序的输出结果为{{U}} 【10】 {{/U}}。 #include<iostream.h> f(int a) {int b=0; static int c=3; b++; c++; return(a+ b+ c); } void main() {int a=2,i; for(i=0;i<3;i++) cout<<f(a)<<end1; }
  • 1、
【正确答案】 1、7    
【答案解析】8 9