#include <iostream>
#include <string>
using namespace std;
int main(){
int K,count=0;
cin>>K;
string s;
for(int i=0;;i++)
{
cin>>s;
count++;
if(s=="ChuiZi"){
if(count<K)
{
cout<<"Bu"<<endl;
}
if(count==K)
{
cout<<s<<endl;
}
}
if(s=="JianDao")
{
if(count<K)
{
cout<<"ChuiZi"<<endl;
}
if(count==K)
{
cout<<s<<endl;
}
}
if(s=="Bu")
{
if(count<=K)
{
cout<<"JianDao"<<endl;
count++;
}
if(count==K)
{
cout<<s<<endl;
}
}
if(s=="End")
{
break;
}
}
return 0;
}
代码执行一个之后就停止了,不会再继续执行,是为什么?求解