提交时间:2026-04-01 18:50:54
运行 ID: 434862
#include<iostream> using namespace std; int main(){ int i=10; while(i>=1){ cout<<i<<endl; i--; } return 0; }