一道C++运算题,求解释
#include <iostream.h>void main()
{
int a=3,b=6;
int c=a^b<<2;
cout<<c<<endl;
}
输出是:27
怎么得到的?
2007-09-07 16:40
2007-09-07 16:45
2007-09-07 17:26
2007-09-07 17:31
2007-09-07 18:40


2007-09-07 22:48
2007-09-07 22:49

2007-09-09 10:51
2007-09-11 10:21
2007-09-11 10:48