高等继续教育 / 面向对象程序设计
正确率:认证
题型描述: 简答题
写出下面程序执行结果:
#include<iostream.h>
void swap(int &,int &);
void main( )
{int a=5,b=8; cout<<"a="<<a<<","<<"b="<<b<<endl;
swap(a,b); cout<<"a="<<a<<","<<"b="<<b<<endl;
}
void swap(int &x,int &y)
{int temp=x; x=y; y=temp;}
参考答案:
佳题速递: