#CH017. 自增与自减

自增与自减

阅读程序,填写对应的输出结果

int i = 0, j = 0;
i++;
++j;
cout << i << ' ' << j << endl;
cout << ++i << ' ' << j++ << endl;
cout << i << ' ' << j << endl;
cout << i-- << ' ' << --j << endl;
cout << i << ' ' << j << endl; 

第一次输出:{{ input(1) }}
第二次输出:{{ input(2) }}
第三次输出:{{ input(3) }}
第二次输出:{{ input(4) }}
第三次输出:{{ input(5) }}