填空题

若有以下程序:
#include <iostream>
using namespace std;
int f(int x, int y)

return (y-x)*x;

int main()

int a=3,b=4,c=5,d;
d=f(f(a,b) ,f(a,c) );
cout<<d<<<end1;
return 0;

执行后的输出结果是 【8】

【参考答案】

I