星期日, 12月 28, 2008

[程式設計] 不用暫存變數的Swap-限整數

  
void SwapAB(int a, int b)
{
a=a+b;
b=a-b;
a=a-b;
}

沒有留言: