你猜

小杰  •  27天前


include <bits/stdc++.h>

using namespace std;

int main() {

int n;
cin >> n;
for ( n = n; n >= 1; n = n - 1) {
	cout << n << " ";
}
return 0;

}


评论:

请先登录,才能进行评论