填空题

下面程序的运行结果是 【13】 。 #include<iostream.h> void fun(ira &a,int b=3) { static int i=2; a=a+b+i; i=i+a; } void main() { int x=5,y=2; fun(x,y); eout<<x<<",,; fun(x); cout<<x<<endl; }

【参考答案】

I,BC