📝 ``` #include <iostream> using namespace std; int main() { for (int j = 3; j > 0; j--) { cout …
📂 C++
· ⚡ 难度 1
· ❓ 单选题
· 📖 基础题库
```
#include <iostream>
using namespace std;
int main() {
for (int j = 3; j > 0; j--) {
cout << j << " ";
}
return 0;
}
```
请问以上程序的运行结构是哪个选项