codeforces 236A-C语言解题报告

Posted DQ_CODING

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了codeforces 236A-C语言解题报告相关的知识,希望对你有一定的参考价值。

236题目网址

题目解析

1.输入字符串,判断其中不同的字符个数,奇偶输出不同的语句
2.使用冒泡排序去排序,当遇到s[k]!=s[k+1]时进行计数

代码

#include<stdio.h>
#include<stdlib.h>
#include<string.h>
int main()
{
	char s [100]={'\\0'};
	int i,j,k,count=0;
	char c='\\0';
	scanf("%s",s);

	for(i=0;i<strlen(s)-1;i++)
	{
		for(j=0;j<strlen(s)-1;j++)
		{
			if(s[j]>s[j+1])
			{
				c=s[j+1];
				s[j+1]=s[j];
				s[j]=c;
			}
		}
	}
	for(k=0;k<strlen(s);k++)
	{
		if(s[k]!=s[k+1])
		{
			++count;
		}
	}
	printf("%d\\n",count);
	if(count%2==0)
	{
		printf("CHAT WITH HER!");
	}else
	{
		printf("IGNORE HIM!");
	}
	system("pause");
	getchar();
	return 0;
}

以上是关于codeforces 236A-C语言解题报告的主要内容,如果未能解决你的问题,请参考以下文章

codeforces 133A-C语言解题报告

codeforces 1030A-C语言解题报告

codeforces 705A-C语言解题报告

codeforces 122A-C语言解题报告

codeforces 344A-C语言解题报告

codeforces 266A-C语言解题报告