PAT甲题题解-1005. Spell It Right (20)-数位求和,水

Posted 辰曦~文若

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了PAT甲题题解-1005. Spell It Right (20)-数位求和,水相关的知识,希望对你有一定的参考价值。

把每个位上的数字求和sum,然后以英文单词的形式输出sum的每个位

技术分享
#include <iostream>
#include <cstdio>
#include <algorithm>
#include <cstring>
#include <vector>
using namespace std;
/*
把每个位上的数字求和sum,然后以英文单词的形式输出sum的每个位
水
*/
char word[10][20]={"zero","one","two","three","four","five","six","seven","eight","nine"};
int main()
{
    char str[105];
    scanf("%s",str);
    int len=strlen(str);
    int sum=0;
    for(int i=0;i<len;i++){
        sum+=str[i]-0;
    }
//printf("sum:%d\n",sum);
    sprintf(str,"%d",sum);
    len=strlen(str);
    int idx=str[0]-0;
    printf("%s",word[idx]);
    for(int i=1;i<len;i++){
        idx=str[i]-0;
        printf(" %s",word[idx]);
    }
    return 0;
}
View Code

 

以上是关于PAT甲题题解-1005. Spell It Right (20)-数位求和,水的主要内容,如果未能解决你的问题,请参考以下文章

PAT 1005. Spell It Right

Pat1005:Spell It Right

PAT A1005 Spell It Right

1005. Spell It Right(20)—PAT 甲级

PAT 甲级 1005 Spell It Right

PAT Advanced 1005 Spell It Right