面向对象程序设计上机练习四(变量引用)
Time Limit: 1000MS
Memory Limit: 65536KB
Problem Description
将变量的引用作为函数形参,实现2个int型数据交换。
Input
输入2个int型整数。
Output
输出2个整数交换前后的值。
Example Input
88 66
Example Output
88 66 66 88
Hint
Author
zlh
引用是一个隐性指针,引用值引自所指向的实体
//传递变量的指针
#include <iostream>
using namespace std;
void Swap(int *a,int *b)
{
int t=*a;
*a=*b;
*b=t;
}
int main()
{
int a,b;
cin>>a>>b;
cout<<a<<' '<<b<<endl;
Swap(&a,&b);
cout<<a<<' '<<b<<endl;
return 0;
}
//传递变量的别名
#include <iostream>
using namespace std;
void Swap(int &a,int &b)
{
int t=a;
a=b;
b=t;
}
int main()
{
int a,b;
cin>>a>>b;
cout<<a<<' '<<b<<endl;
Swap(a,b);
cout<<a<<' '<<b<<endl;
return 0;
}

本文通过上机练习介绍如何使用变量引用实现两个整数的数据交换,包括传递变量的指针和别名两种方式。
1906

被折叠的 条评论
为什么被折叠?



