相信我
2025-11-14 13:07:39
发布于:广东
35阅读
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;
}
全部评论 2
赞
2025-11-17 来自 广东
1这是c++吗?

2026-01-11 来自 上海
0怎么不是?
2026-01-12 来自 广东
0










有帮助,赞一个