Skip to content

October 30, 2011

2

普通程序员、文艺程序员、2B程序员

作者: physixfan

跟风发个这种蛋疼文体。

普通程序员

void swap(int &a,int &b)
{
    int temp;
    temp=a;
    a=b;
    b=temp;
}

文艺程序员

void swap(int &a,int &b)
{
    a=a^b;
    b=a^b;
    a=a^b;
}

2B程序员

void swap(int a,int b)
{
    int temp;
    temp=a;
    a=b;
    b=temp;
}

希望能引起广大苦逼的正在学或者已经学过c++人的共鸣和会心一笑吧。。

Read more from Ideas
2 Comments Post a comment
  1. 没看懂。。。是因为2B程序员用的传值调用吗?

    Reply
  2. __init__.py
    Aug 4 2017

    人生苦短,我用Python

    Reply

Share your thoughts, post a comment.

(required)
(required)

Note: HTML is allowed. Your email address will never be published.

Subscribe to comments