码迷,mamicode.com
首页 > 其他好文 > 详细

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

时间:2017-04-18 15:04:53      阅读:187      评论:0      收藏:0      [点我收藏+]

标签:hid   color   std   span   iostream   isp   数字   logs   char   

把每个位上的数字求和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)-数位求和,水

标签:hid   color   std   span   iostream   isp   数字   logs   char   

原文地址:http://www.cnblogs.com/chenxiwenruo/p/6727831.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!