下面程序的输出结果为【】。includef(int a){int b=0; static int c=3; b++; c++; retu

19 查阅

下面程序的输出结果为【 】。

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;

}

参考答案:

789789

计算机二级