注意:此页面搜索的是所有试题
题目内容
(许昌学院面向对象程序设计)
[分析题,4分] #include<iostream.h> int f1(int x,int y){ x=x+y;y=x+y; cout<<”x=”<<x<<”,y=”<<y<<endl; return x+y;}void main(){ int x=5,y=8; int z=f1(x,y); cout<<”x=”<<x<<”,y=”<<y; cout<<”,z=”<<z<<endl;}
参考答案