求大家看下这段代码奇怪的输出?
#include <iostream>using namespace std;
int main()
{
int count = 0;
cout << count++ << count++ << count++ << endl;
return 0;
}
为什么输出的是210而不是012呢?
2016-05-15 15:34
2016-05-15 17:01
2016-05-19 15:38
2016-05-19 23:20