提交时间:2026-04-18 15:30:49

运行 ID: 436796

#include<iostream> using namespace std; int main(){ int i=5; while(i>=1){ cout<<i<<endl; i--; } return 0; }