code.club
標題:
二個變數值互換而不用第三者介入
[打印本頁]
作者:
enter
時間:
2015-8-20 14:20
標題:
二個變數值互換而不用第三者介入
#include <stdio.h>
#include <Stdlib.h>
int main(void){
int x,y;
x = 99;
y= 1234;
x=x^y;
y=y^x;
x=x^y;
printf("%d\n",x);
return 0;
}
歡迎光臨 code.club (https://code.club/)
Powered by Discuz! X3.2