1005. Spell It Right (20)(模拟题)

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

Code:

 1 #include <bits/stdc++.h>
 2 using namespace std;
 3 static const int MAXN = 110;
 4 static const char OUT[10][10] = {"zero", "one", "two", "three", "four", "five", "six", "seven", "eight", "nine"};
 5 char data[MAXN];
 6 int main()
 7 {
 8     vector<int> ans;
 9     scanf("%s" , data);
10     int len = strlen(data);
11     int sum = 0;
12     for(int i = 0 ; i < len ; ++i)
13     {
14         sum += data[i] - 48;
15     }
16     if(sum == 0)
17     {
18         puts("zero");
19         return 0;
20     }
21     while(sum)
22     {
23         ans.push_back(sum % 10);
24         sum /= 10;
25     }
26     int si = ans.size();
27     for(int i = si - 1 ; i > 0 ; --i)
28     {
29         printf("%s " , OUT[ans[i]]);
30     }
31     printf("%s" , OUT[ans[0]]);
32 }

时间: 2024-10-10 13:57:21

1005. Spell It Right (20)(模拟题)的相关文章

1005. Spell It Right (20) -PAT

1005. Spell It Right (20) 时间限制 400 ms 内存限制 65536 kB 代码长度限制 16000 B 判题程序 Standard 作者 CHEN, Yue 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: E

1005. Spell It Right (20)——PAT (Advanced Level) Practise

题目信息: 1005. Spell It Right (20) 时间限制 400 ms 内存限制 32000 kB 代码长度限制 16000 B 判题程序 Standard 作者 CHEN, Yue 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 Specificat

PAT 1005. Spell It Right (20)

1005. Spell It Right (20) 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 w

1005 Spell It Right (20)(20 分)

1005 Spell It Right (20)(20 分) 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 l

1005 Spell It Right (20分)

1005 Spell It Right (20分) 题目: 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 li

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&qu

PAT (Advanced Level) 1005. Spell It Right (20)

简单题. #include<iostream> #include<cstring> #include<cmath> #include<algorithm> #include<cstdio> #include<vector> using namespace std; const int maxn=100+10; char s[maxn]; int tmp[maxn],tot; char ans[15][7]={ "zero&q

1005 Spell It Right (20)

1 #include <string> 2 #include <sstream> 3 #include <iostream> 4 using namespace std; 5 6 int main() 7 { 8 string str; 9 char num[10][6]={"zero","one","two","three","four","five"

PAT:1005. Spell It Right (20) AC

#include<stdio.h> #include<string.h> char alp[10][10]={"zero","one","two","three","four","five","six","seven","eight","nine"}; char str[1200];