[求助]运算符问题
#include<iostream.h>void main ()
{
int a=0,b=1,c=2;
c=++a||++b;
cout<<a<<b<<c<<endl;
}
为什么运算出的结果中b=1而不是2呀?
2007-10-03 14:27
2007-10-03 15:03
2007-10-03 15:37
2007-10-03 15:40
2007-10-03 15:57
2007-10-03 19:42
2007-10-04 13:02