阅读程序写结果。
#include<iostream>
#include<ctime>
#include<cstdlib>
using namespace std;
int main() {
int x;
srand(time(0));
if(x<10) {
x=10;
}
if(x==10) {
x--;
if(x!=10) {
cout <<x;
return 0;
输出:______
20
10
9
8