#include <iostream> using namespace std; int main() { int x=2; cout<<(++x + ++x)<<endl; return 0; }
++x 后 x 是 3
第二次 ++x 后 x 是 4
3+4=7
有什么不对的?求大佬分析一下。