#includeusing namespace std;int main(){int a,b,c;int f(int x,int y,int z);cin>>a>>b>>c;c= f(a,b,c);cout<<c<<endl;
输入abc的值,把abc作为参数然传入f函数,最后输出c的值