C_and_CPP 版 (精华区)
发信人: hyy (活着便精彩), 信区: C_and_CPP
标 题: 使用引用来改变参数值的例子
发信站: 哈工大紫丁香 (2004年02月18日13:59:53 星期三), 站内信件
#include "stdafx.h"
#include "iostream.h"
void swap(int&,int&);
main(int argc, char* argv[])
{
int a=4,b=5;
swap(a,b);
printf("Hello World!\n");
cout<<"a="<<a<<"b="<<b;
cin>>a;
}
void swap(int &x,int &y)
{
int temp;
temp=x;
x=y;
y=temp;
cout<<"x="<<x<<"y="<<y;
}
main前面没有声明返回类型,也行
--
________ ________
/| \ / |\
/|| \ / ||\
||| | |||
||| 向你推荐 | Delphi |||
||| | |||
※ 来源:·哈工大紫丁香 bbs.hit.edu.cn·[FROM: 202.118.235.183]
Powered by KBS BBS 2.0 (http://dev.kcn.cn)
页面执行时间:2.851毫秒