文章
2
粉丝
317
获赞
0
访问
16.2k
<code>
#include
#include
using namespace std;
int main()
{
int n,last;
cin>>n;
vector people;//动态数组
vector::iterator it;//迭代器遍历
for(int i=1;i<=n;++i)
{
people.push_back(i);//顺序编号
}
int count=1;
while(people.size()>1)
{
for(it=people.begin();it!=people.end();++it)
{
if(count%3==0)
{
it=people.erase(it);//该位置删除
--it;
}
&...
登录后发布评论
暂无评论,来抢沙发