高手看一下这是什么运算?
#include<iostream.h>void main()
{int x=1,y=2,z=3;
x=x^z;
y=y^z;
z=x^y;
cout<<x<<y<<z;}
输出结果是213,请高手看一下,这是什么运算。在VFP中是乘方,但这里不是。
2009-09-18 13:20
2009-09-18 13:58
2009-09-18 17:35
2009-09-18 21:32
2009-09-18 23:06

2009-09-19 21:07