摘要: #A 要求你从N开始,一直打印到0。像这样: N N-1 ...... 3 2 1 0 简单 #include<iostream> using namespace std; int n; int main(){ cin>>n; for(int i=n;i>=0;i--)cout<<i<<endl; 阅读全文
posted @ 2022-12-12 13:58 bvwvd 阅读(49) 评论(0) 推荐(0)