标题:Josephus问题
只看楼主
liang200
Rank: 1
等 级:新手上路
帖 子:4
专家分:0
注 册:2006-3-6
 问题点数:0 回复次数:0 
Josephus问题
以下是我用C++编写的 Josephus 问题的一个程序,怎么显不出结果来??

#include <iostream.h>

#define ture 1

int main(int argc, char* argv[])
{
const int num=10;
int interval;
int ch[num];
int place=-1;
int count=0;

for(int a=0;a<num;a++)
ch[a]=a+1;

for(int b=0;b<num;b++)
cout<<ch[b]<<" ";
cout<<endl;


cout<<"input number"<<endl;
cin>>interval;
if(interval<0&&interval>10)
{
cout<<"bed number"<<endl;
}

while(ture)
{
for(int a=0;a<interval;)
{
place=(place+1)%num;
if(ch[place]!=0)
a++;
}
cout<<ch[place]<<" ";
if(count==num)
{
cout<<endl;
cout<<"winner:"<<ch[place];
break;
}
ch[place]=0;
count++;
}

return 0;
}

搜索更多相关主题的帖子: Josephus 
2006-03-10 12:00



参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-49513-1-1.html




关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.769214 second(s), 8 queries.
Copyright©2004-2025, BCCN.NET, All Rights Reserved