阅读程序写结果。
#include<iostream>
using namespace std;
int main() {
int x;
cin >>x;
if(x==10){
x++;
}else{
x--;
}
cout <<"x=" << x << endl;
return 0;
输入: 10
输出:_______
10
11
9
12