-->
当前位置:首页 > 题库

单选题:What is the output of the following piece of code?

Luz5年前 (2021-05-10)题库551
What is the output of the following piece of code? @[D](2)
```
int n = 9;
while (n > 6) {
n--;
printf("%d", n);
}
```
A. 8765
B. 9876
C. 987
D. 876



A.8765
B.9876
C.987
D.876


答案:D