标签:面向 space iostream 实现 整数 include pac 题目 bsp
88 66
88 66 66 88
把变量的引用作为函数形參,即传送变量的别名.
#include <iostream> using namespace std; //“引用形參”交换函数 void swap(int &a, int &b) { int temp; temp=a; a=b; b=temp; } //主函数 int main() { int x,y; cin >> x >> y; //交换前 cout << x << " " << y << endl; //调用交换函数 swap(x,y); //交换后 cout << x << " " << y << endl; return 0; }
标签:面向 space iostream 实现 整数 include pac 题目 bsp
原文地址:http://www.cnblogs.com/lytwajue/p/6875772.html