![]() |
#2
rjsp2016-05-15 17:01
|
#include <iostream>
using namespace std;
int main()
{
int count = 0;
cout << count++ << count++ << count++ << endl;
return 0;
}
为什么输出的是210而不是012呢?