zoukankan      html  css  js  c++  java
  • CF Tavas and Nafas

     Tavas and Nafas
    time limit per test
    1 second
    memory limit per test
    256 megabytes
    input
    standard input
    output
    standard output

    Today Tavas got his test result as an integer score and he wants to share it with his girlfriend, Nafas.

    His phone operating system is Tavdroid, and its keyboard doesn't have any digits! He wants to share his score with Nafas via text, so he has no choice but to send this number using words.

    He ate coffee mix without water again, so right now he's really messed up and can't think.

    Your task is to help him by telling him what to type.

    Input

    The first and only line of input contains an integer s (0 ≤ s ≤ 99), Tavas's score.

    Output

    In the first and only line of output, print a single string consisting only from English lowercase letters and hyphens ('-'). Do not use spaces.

    Sample test(s)
    input
    6
    output
    six
    input
    99
    output
    ninety-nine
    input
    20
    output
    twenty




    英语基础题
    #include <iostream>
    #include <cmath>
    #include <cstring>
    #include <cstdio>
    #include <string>
    #include <algorithm>
    #include <cctype>
    #include <queue>
    #include <map>
    using    namespace    std;
    
    char    HIGH[][20] = {"ten","twenty","thirty","forty","fifty","sixty","seventy","eighty","ninety"};
    char    TEN[][20] = {"ten","eleven","twelve","thirteen","fourteen","fifteen","sixteen",
    "seventeen","eighteen","nineteen"};
    char    LOW[][20] = {"zero","one","two","three","four","five","six","seven","eight",
    "nine"};
    int    main(void)
    {
        string    s;
        int    len;
    
        while(cin >> s)
        {
            len = s.size();
            if(len == 1)
                cout << LOW[s[0] - '0'] << endl;
            else    if(s[0] == '1')
                cout << TEN[s[1] - '0'] << endl;
            else
            {
                if(s[1] == '0')
                    cout << HIGH[s[0] - '1'] << endl;
                else
                    cout << HIGH[s[0] - '1'] << '-' << LOW[s[1] - '0'] << endl;
            }
        }
    
        return    0;
    }
  • 相关阅读:
    常用Java工具类
    Enum应用
    mybatis xml <if>判断字符串相等
    sqlserver插入图片数据
    [转载]Jquery Chosen 插件动态生成option或重新绑定
    工作问题整理-- sqlserver 新增参数限制,maven pom邮件发送
    【转载】redis.windows.conf 参数说明
    oracle11g更改字符集
    oracle基础知识小结
    [转载]SQL Server 数据库定时自动备份
  • 原文地址:https://www.cnblogs.com/xz816111/p/4433716.html
Copyright © 2011-2022 走看看