相信我
2025-11-14 13:07:39
发布于:广东
4阅读
0回复
0点赞
题解在此
#include <iostream>
using namespace std;
int main() {
int n, x, y;
cin >> n >> x >> y;
for (int i = 0; i < n; ++i) {
for (int j = y; j >= x; --j) {
cout << j<<" ";
}
cout << endl;
}
return 0;
}
全部评论 1
赞
4天前 来自 广东
0






有帮助,赞一个