zoukankan      html  css  js  c++  java
  • 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

    分析:
    相当于字符和数字间的转换,已知长度没有错误,每个字符最多错一个地方

    代码:
    #include<stdio.h>
    #include<string.h>
    int main()
    {
        int n,l,i;
        char s[10];
        scanf("%d",&n);
            while(n--)
            {
                scanf("%s",s);
                l=strlen(s);
                if(l==5)
                   printf("3
    ");
                else
                {
                    if(s[0]=='o'&&s[1]=='n'||s[0]=='o'&&s[2]=='e'||s[1]=='n'&&s[2]=='e')
                       printf("1
    ");
                    else
                       printf("2
    ");
                }
            }
        
        return 0;
    }

    参考代码:

    #include<set>
    #include<map>
    #include<stack>
    #include<queue>
    #include<ctime>
    #include<cmath>
    #include<vector>
    #include<string>
    #include<cstdio>
    #include<cstdlib>
    #include<cstring>
    #include<iostream>
    #include<algorithm>
    #define Master Love
    #define YYF Handsome
    #define Rp Maxunsignedlonglongint
    #define Orz zhanhb8 qs1994
    #define Designer Zero
    #define zhx zh[x]
    #define lth th<<1
    #define rth th<<1|1
    #define middle (nl+nr)>>1
    #define MAX(a,b)  (a>b)?a:b
    #define MIN(a,b)  (a<b)?a:b
    #define getlen(s)  strlen(s+1)
    #define outputans cout<<ans<<endl
    #define inputint(k) scanf("%d",&k)
    #define inputchar(c) scanf("%c",&c)
    #define input64(k) scanf("%I64d",&k)
    #define inputdouble(k) scanf("%lf",&k)
    #define inputstring(s) scanf("%s",s+1)
    #define forout(i,l,r) for(i=l;i<=r;i++)
    #define forin(i,l,r) for(int i=l;i<=r;i++)
    #define clearit(a,k) memset(a,k,sizeof(a))
    #define formatrix for(int i=1;i<=m;i++)for(int j=1;j<=n;j++)
    #pragma warning(disable:4996)
    using namespace std;
    int T;
    char s[521];
    int main(){
        cin >> T;
        while (T--){
            inputstring(s);
            int len = strlen(s + 1);
            if (len == 5)printf("3
    ");
            else {
                int cnt = 0;
                if (s[1] == 't')cnt++;
                if (s[2] == 'w')cnt++;
                if (s[3] == 'o')cnt++;
                if (cnt >= 2)printf("2
    ");
                else printf("1
    ");
            
            }
        
        }
        return 0;
    }
  • 相关阅读:
    Devexpress GridView添加行号
    Devexpress GridControl 常用设置
    导入Excel部分数据导入不了的原因及处理
    GridView里面的HyperLink和ButtonField操作总结
    sybase数据表的导出与导入
    uniapp的unistarter的白名单访问模式需要绝对路径
    vue 用vif隐藏显示切换大量dom元素,导致一个页面上一个组件多次调用的created不能全部执行的修改方法
    2013腾讯编程马拉松初赛:小Q系列故事——屌丝的逆袭
    Tensorflow Federated(TFF)框架整理(上)
    Stateful TFF
  • 原文地址:https://www.cnblogs.com/lipching/p/3854609.html
Copyright © 2011-2022 走看看