概述
出现两个相邻不是相同马上复原ans=1;
#include<stdio.h>
#include<string.h>
int main()
{
char a[1000];
while(~scanf("%s",a))
{
int l;
l=strlen(a);
int ans=1;
for(int i=0;i<l;i++)
{
if(a[i]==a[i+1])
ans=ans+1;
else
ans=1;
if(ans>=7)
{
printf("YESn");
break;
}
}
if(ans<7)
printf("NOn");
}
return 0;
}
最后
以上就是舒服黄豆为你收集整理的【codeforces】--Football(不能有七个0或1连续)的全部内容,希望文章能够帮你解决【codeforces】--Football(不能有七个0或1连续)所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复