ac
2024-11-01 20:51:39
发布于:江苏
3阅读
0回复
0点赞
#include <bits/stdc++.h>
using namespace std;
int main()
{
int n,m,k;
cin>>n>>m>>k ;
queue<int> q;
queue<int> r;
for(int i=1;i<=n;i++){
q.push(i);
}
for(int j=1;j<=m;j++){
r.push(j);
}
int temp,temp1;
for(int w=1;w<=k;w++){
cout<<q.front()<<" "<<r.front()<<endl;
temp=q.front();
temp1=r.front();
q.pop();
r.pop();
q.push(temp);
r.push(temp1);
}
return 0;
}
全部评论 1
1
2024-11-01 来自 江苏
0
有帮助,赞一个