码迷,mamicode.com
首页 > 其他好文 > 详细

体验函数參数传递

时间:2017-05-11 22:25:39      阅读:171      评论:0      收藏:0      [点我收藏+]

标签:ext   blog   end   pac   bsp   iss   iostream   cout   main   

#include <iostream>
using namespace std;
void fun1(int &x,int &y);
void fun2(int *x,int *y);
int main()
{
    int a,b;
    a=11;
    b=22;
    fun2(&a,&b);
    cout<<"a="<<a<<" b="<<b<<endl;
    fun1(a,b);
    cout<<"a="<<a<<" b="<<b<<endl;
    return 0;
}
void fun1(int &x,int &y)
{
    int t;
    t=x;
    x=y;
    y=t;
}
void fun2(int *x,int *y)
{
    int *t;
    t=x;
    x=y;
    y=t;
}

估计结果


a=11      b=22

a=22      b=11


实际结果

技术分享



分部 。一步一步来就能得到正确结果( ⊙ o ⊙ )!


体验函数參数传递

标签:ext   blog   end   pac   bsp   iss   iostream   cout   main   

原文地址:http://www.cnblogs.com/cxchanpin/p/6842681.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!