问题
填空题
阅读下面程序:
#include <iostream.h>
int fun(int a,int b)
int t;
c=a*b:
return c;
void main()
int a=3,b=5,c=4,x=0;
x=fun(fun(a,b),c);
cout<<x<<endl;
其运行结果是______。
答案
参考答案:60