cf 535 A. Tavas and Nafas

A. 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
Note

You can find all you need to know about English numerals in http://en.wikipedia.org/wiki/English_numerals .

 

在考英语2333

#include <iostream>

using namespace std;

int main()
{
    int s,a,b;
    cin>>s;
    switch(s)
    {   case 0:cout<<"zero";return 0;
        case 10:cout<<"ten";return 0;
        case 11:cout<<"eleven";return 0;
        case 12:cout<<"twelve";return 0;
        case 13:cout<<"thirteen";return 0;
        case 14:cout<<"fourteen";return 0;
        case 15:cout<<"fifteen";return 0;
        case 16:cout<<"sixteen";return 0;
        case 17:cout<<"seventeen";return 0;
        case 18:cout<<"eighteen";return 0;
        case 19:cout<<"nineteen";return 0;
    }
    a = s /10;
    b = s%10;
    switch(a)
    {
        case 0:break;
        case 2:cout<<"twenty";break;
        case 3:cout<<"thirty";break;
        case 4:cout<<"forty";break;
        case 5:cout<<"fifty";break;
        case 6:cout<<"sixty";break;
        case 7:cout<<"seventy";break;
        case 8:cout<<"eighty";break;
        case 9:cout<<"ninety";break;
    }
    if (b!=0)
    {
        if (a!=0)
        cout<<"-";
        switch(b)
    {
        case 1:cout<<"one";break;
        case 2:cout<<"two";break;
        case 3:cout<<"three";break;
        case 4:cout<<"four";break;
        case 5:cout<<"five";break;
        case 6:cout<<"six";break;
        case 7:cout<<"seven";break;
        case 8:cout<<"eight";break;
        case 9:cout<<"nine";break;
    }

    }
    return 0;
}

 

转载于:https://www.cnblogs.com/111qqz/p/4427470.html

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值