1100: 一二三 Time Limit: 1 Sec Memory Limit: 128 MB Submit: 1225 Solved: 546 [Submit][Status][Web Board] Description
你弟弟刚刚学会写英语的一(one)、二(two)和三(three)。他在纸上写了好些一二三,可惜有些字母写错了。已知每个单词最多有一个字母写错了(单词长度肯定不会错),你能认出他写的啥吗?
Input
第一行为单词的个数(不超过10)。以下每行为一个单词,单词长度正确,且最多有一个字母写错。所有字母都是小写的。
Output 对于每组测试数据,输出一行,即该单词的阿拉伯数字。输入保证只有一种理解方式。
Sample Input 3 owe too theee
Sample Output 1 2 3
#include <iostream> #include <cstring> #include <cstdio> using namespace std; int main() { int n; char s[1000]; scanf("%d",&n); while(n--) { scanf("%s",s); int len=strlen(s); if(len==3) { if((s[0]=='o'&&s[1]=='n')||(s[0]=='o'&&s[2]=='e')||(s[1]=='n'&&s[2]=='e')) cout<<1; else cout<<2; } else cout<<3; cout<<endl; } return 0; }