填空题

下面程序的输出结果为 【10】 。 #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; }

【参考答案】

G