提交时间:2025-03-16 09:44:05
运行 ID: 312937
#include<iostream> using namespace std; int main(){ int i=5; while(i>=1){ cout<<i--<<endl; i++; } return 0; }