Boy or Girl

Posted liufei-

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Boy or Girl相关的知识,希望对你有一定的参考价值。

Description


Those days, many boys use beautiful girls photos as avatars in forums. So it is pretty hard to tell the gender of a user at the first glance. Last year, our hero went to a forum and had a nice chat with a beauty (he thought so). After that they talked very often and eventually they became a couple in the network.

But yesterday, he came to see "her" in the real world and found out "she" is actually a very strong man! Our hero is very sad and he is too tired to love again now. So he came up with a way to recognize users genders by their user names.

This is his method: if the number of distinct characters in ones user name is odd, then he is a male, otherwise she is a female. You are given the string that denotes the user name, please help our hero to determine the gender of this user by his method.

Input


Every line contains a non-empty string, that contains only lowercase English letters — the user name. This string contains at most 100 letters.

Output


If it is a female by our heros method, print "CHAT WITH HER!" (without the quotes), otherwise, print "IGNORE HIM!" (without the quotes).

Sample Input

wjmzbmr
xiaodao
sevenkplus

Sample Output

CHAT WITH HER!
IGNORE HIM!
CHAT WITH HER!
#include<cstdio>
#include<vector>
#include<algorithm>
#include<iostream>
#include<string.h>
using namespace std;
  
int main()
{
   char a[101];
   int len ,i,ans;
   while(scanf("%s",a)!=EOF)  scanf不吸收空格
   {
       ans=1;  //注意细节
       len=strlen(a);    
       sort(a,a+len);    //直接对字符串排序
       for(i=0;i<len-1;i++)  //注意细节,如果是i+1的话注意i的边界只能到len-1
       {
            if(a[i]!=a[i+1])
                ans++;
       }
       if(ans%2==0)
           printf("CHAT WITH HER!
");
       else
           printf("IGNORE HIM!
");
   }
    return 0;
}

思路:将字母排序,两两进行比较看看相不相等

以上是关于Boy or Girl的主要内容,如果未能解决你的问题,请参考以下文章

Linux脚本练习之script011-当执行程序时,让使用者选择 `boy` 或者 `girl`,如果使用者输入 `B` 或者 `b`,则显示 `He is a boy`。

第八章 永久存储[DDT书本学习 小甲鱼]

C#算法,变量值交换

oc如何提取文件中的第n行第n个字符 比如: hello, boy, girl, i love

SQL踩坑:计算函数or聚合函数的字段平级,导致分辨不出彼此的别名问题

SQL踩坑:计算函数or聚合函数的字段平级,导致分辨不出彼此的别名问题