提交时间:2026-03-22 16:46:06

运行 ID: 434039

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