zoukankan      html  css  js  c++  java
  • 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;
    }
  • 相关阅读:
    Docker 中国官方镜像加速
    mysql主从同步
    hadoop相关
    Mac上Ultra Edit的激活
    ansible安装应用软件
    Docker学习第二天-容器
    wwnjld团队第二轮迭代成员分数
    第二轮迭代发布报告
    wwnjld第二轮迭代测试报告
    12.24会议记录
  • 原文地址:https://www.cnblogs.com/kuangbin/p/2179734.html
Copyright © 2011-2022 走看看