你弟弟刚刚学会写英语的一(one)、二(two)和三(three)。他在纸上写了好些一二三,可惜有些字母写错了。已知每个单词最多有一个字母写错了(单词长度肯定不会错),你能认出他写的啥吗?
Input
Output
Sample Input
Sample Output
第一行为单词的个数(不超过10)。以下每行为一个单词,单词长度正确,且最多有一个字母写错。所有字母都是小写的。
对于每组测试数据,输出一行,即该单词的阿拉伯数字。输入保证只有一种理解方式。
3
owe
too
theee
1
2
3
枚举暴力搜索
#include <iostream> #include <string> using namespace std; int main() { int T,n,i,one,two,ans; string s; cin>>T; while (T--) { one=0; two=0; cin>>s; if (s.length()==5) ans=3; else { if (s[0]=='o') one++; if (s[0]=='t') two++; if (s[1]=='n') one++; if (s[1]=='w') two++; if (s[2]=='e') one++; if (s[2]=='o') two++; if (one>=2) ans=1; else if (two>=2) ans=2; } cout<<ans<<endl; } return 0; }