我的答案
2026-07-14 19:00:54
发布于:北京
4阅读
0回复
0点赞
#include<bits/stdc++.h>
using namespace std;
int main()
{
int x,y,n;
cin >> n >> x >> y;
for(int i = 1; i <= n; i++)
{
for(int j = x; j <= y; j++)
{
cout << j << " ";
}
cout << endl;
}
return 0;
}
这里空空如也


有帮助,赞一个