201712-2 游戏
程序员文章站
2022-04-25 20:01:24
...
#include <iostream>
#include <queue>
using namespace std;
const int N=1010;
queue<int> student;
int main(){
int n,k;
cin>>n>>k;
for(int i=1;i<=n;i++){
student.push(i);
}
int num=1,temp;
while(!student.empty()){
temp=student.front();
student.pop();
if(num%k==0||num%10==k) ;
else student.push(temp);
num++;
}
cout<<temp;
return 0;
}
#各容器的区别,贴一个链接:
上一篇: Spring Data Jpa(三)