后置自增的取值时机

judge 难度 1

#operator#variable

先取值还是先加一?

题目

下面代码的输出是「5 6」。

int i = 5;
cout << i++ << " " << i << endl;
来小码星球,动手写一遍 →