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;
    }
  • 相关阅读:
    二十八、线程安全
    一、JAVA内存区域与内存溢出异常
    一、SQLite学习
    排列问题
    2016年秋季个人阅读计划
    有向图强连通分量求解【转】
    《梦断代码》阅读笔记之五
    《梦断代码》阅读笔记之四
    软件工程个人总结
    《梦断代码》阅读笔记之三
  • 原文地址:https://www.cnblogs.com/kuangbin/p/2179734.html
Copyright © 2011-2022 走看看