标签:
Description
Input
Output
Sample Input
3 owe too theee
Sample Output
1 2 3
分析:本题是一个很简单的题,但是一开始看错了题目,理解错了意思,坑了好久。最好的方法就是你只考虑确定为one或two或three的情况,考虑一下字符的长度就更方便了
1 #include <iostream> 2 #include<cstdio> 3 #include<cstring> 4 using namespace std; 5 char s[10]; 6 int main() 7 { 8 int n,a; 9 cin>>n; 10 while(n--) 11 { 12 cin>>s; 13 int m=strlen(s); 14 if(m==3) 15 { 16 if(s[0]==‘o‘&&s[1]==‘n‘||s[0]==‘o‘&&s[2]==‘e‘||s[1]==‘n‘&&s[2]==‘e‘) cout<<‘1‘<<endl; 17 else cout<<‘2‘<<endl; 18 } 19 else 20 cout<<‘3‘<<endl; 21 } 22 return 0; 23 }
标签:
原文地址:http://www.cnblogs.com/lbyj/p/5781832.html