OneTwoThree (Uva)

One-Two-Three 

Your little brother has just learnt to write one, two and three, in English. He has written a lot of those words in a paper, your task is to recognize them. Note that your little brother is only a child, so he may make small mistakes: for each word, there might be at most one wrong letter. The word length is always correct. It is guaranteed that each letter he wrote is in lower-case, and each word he wrote has a unique interpretation.

Input 

The first line contains the number of words that your little brother has written. Each of the following lines contains a single word with all letters in lower-case. The words satisfy the constraints above: at most one letter might be wrong, but the word length is always correct. There will be at most 10 words in the input.

Output 

For each test case, print the numerical value of the word.

Sample Input 

3
owe
too
theee

Sample Output 

1
2
3


The Seventh Hunan Collegiate Programming Contest
Problemsetter: Rujia Liu, Special Thanks: Yiming Li & Jane Alam Jan

#include<stdio.h>
#include
<string.h>
int main()
{
int n;
char str[10];
scanf(
"%d",&n);
for(int i=1;i<=n;i++)
{
scanf(
"%s",&str);
int len=strlen(str);
if(len>3) printf("3\n");
else
{
if((str[0]=='o'&&str[1]=='n')||(str[0]=='o'&&str[2]=='e')||(str[1]=='n'&&str[2]=='e'))
printf(
"1\n");
else printf("2\n");
}
}
return 0;
}
原文地址:https://www.cnblogs.com/kuangbin/p/2179734.html