codeforces 266A-C语言解题报告
Posted DQ_CODING
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了codeforces 266A-C语言解题报告相关的知识,希望对你有一定的参考价值。
题目解析
1.输入n(1–50)个石头个数,输入RGB的石头颜色,求问拿走最小的石头个数,让它们相邻的石头颜色不同
代码
#include<stdio.h>
#include<stdlib.h>
#include<string.h>
int main()
{
int n,i,count=0;
char s[50]={'\\0'};
scanf("%d",&n);
scanf("%s",s);
for(i=0;i<strlen(s);i++)
{
if(s[i]==s[i+1])
{
++count;
}
}
printf("%d",count);
getchar();
system("pause");
return 0;
}
以上是关于codeforces 266A-C语言解题报告的主要内容,如果未能解决你的问题,请参考以下文章