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;
    }
  • 相关阅读:
    meta 标签禁止缩放失效
    [UE4]打包EXE
    [UE4]Set Array Elem
    [UML]用例图
    [UE4]函数参数引用
    阻止移动鼠标双击页面放大, no double tap
    spring boot入门 -- 介绍和第一个例子
    SpringBoot 启动错误搜集
    spring boot 启动找不到或无法加载主类
    Spring Boot中Starter是什么
  • 原文地址:https://www.cnblogs.com/kuangbin/p/2179734.html
Copyright © 2011-2022 走看看