提交时间:2025-08-22 12:53:58
运行 ID: 341142
#include <iostream> using namespace std; int main(){ int i=5; do{ cout<<i<<" "; i--; } while(i>0); return 0; }