填空题

[程序]
#include

int f(int a,int &b,int *c)

{

a+=b; b+=*c;*c+=a;

return (a+b+*c);

}

void main(void)

{

int x=5,y=5,z=6,sum;

for(int i=0;i<2;i++){

sum=f(x,y,&z);

cout<
}

}

执行程序后输出的第一行是___(1)___,第二行是___(2)___。

【参考答案】

(1)5 11 16 37;(2)5 27 32 75