保AC,看我的看我的,点赞噢,记得加缩进
2024-08-15 19:22:37
发布于:广东
6阅读
0回复
0点赞
#include<bits/stdc++.h>
using namespace std;
int main(){
queue<int> q;
int n,m,cnt=0;
cin>>n>>m;
for(int i=1;i<=n;i++){
q.push(i);
}
while(!q.empty()){
cnt++;
if(cnt==m){
cout<<q.front()<<" ";
cnt=0;
}else{
q.push(q.front());
}
q.pop();
}
return 0;
}
这里空空如也
有帮助,赞一个