【Pat】甲级1005 - Spell It Right(STL - map)

本文介绍了一种通过编程实现将一个非负整数的各位数字相加,并将求和结果用英文单词形式输出的方法。使用C++语言实现,涉及字符串转换、栈与映射等数据结构。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

点击打开链接


Given a non-negative integer N, your task is to compute the sum of all the digits of N, and output every digit of the sum in English.

Input Specification:

Each input file contains one test case. Each case occupies one line which contains an N (<= 10100).

Output Specification:

For each test case, output in one line the digits of the sum in English words. There must be one space between two consecutive words, but no extra space at the end of a line.

Sample Input:
12345
Sample Output:
one five
题意:输入一串数字,相加,如上和为15,则输出one five;若为27,则输出two seven。

#include<stack>
#include<stdio.h>
#include<map>
#include<string>	//下面string类型头文件,不是string.h 
#include<iostream>
using namespace std;  
int main()  
{  
    map<int,string> d;//注意<>中的类型,分别与下边数字和单词的类型对应  
    d[0] = "zero";  
    d[1] = "one";  
    d[2] = "two";  
    d[3] = "three";  
    d[4] = "four";  
    d[5] = "five";  
    d[6] = "six";  
    d[7] = "seven";  
    d[8] = "eight";  
    d[9] = "nine";  
    string num;  
    cin >> num;  
    int sum = 0;  
    for (int i = 0 ; i < num.size() ; i++)  
        sum += num[i] - '0';  
    stack<int> S;  
    if (sum == 0)       //记得这个特判  
    {  
        cout << d[0] << endl;  
        return 0;  
    }  
    while (sum)  
    {  
        S.push(sum%10);  
        sum /= 10;  
    }  
    while (!S.empty())  
    {  
        cout << d[S.top()] << (S.size() == 1 ? '\n' : ' ');  
        S.pop();  
    }  
    return 0;  
}  


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值