美文网首页
26.函数的值传递

26.函数的值传递

作者: lxr_ | 来源:发表于2020-12-22 10:14 被阅读0次

    #include<iostream>

    using namespace std;

    //值传递,形参改变不影响实参

    void swap(int num1, int num2)

    {

        int a = num1;

        num1 = num2;

        num2 = a;

    }

    int main()

    {

        int a = 1, b = 2;

        swap(a, b);

        cout << a << endl;

        cout << b << endl;

        system("pause");

        return 0;

    }

    相关文章

      网友评论

          本文标题:26.函数的值传递

          本文链接:https://www.haomeiwen.com/subject/dimawktx.html