阅读程序选结果。
#include<iostream>
using namespace std;
int main(){
int i;
i = 10;
i--;
--i;
i++;
cout <<i <<endl;
return 0;
}
输出的结果是:_____
10
9
8
7