ÉèΪÊ×Ò³ ¼ÓÈëÊÕ²Ø

TOP

PAT Advanced 1005
2015-07-20 17:23:07 À´Ô´: ×÷Õß: ¡¾´ó ÖРС¡¿ ä¯ÀÀ:1´Î
Tags£ºPAT Advanced 1005

ÌâÄ¿ÈçÏ£º

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:

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

´úÂëÈçÏ£º

#include
  
   
#include
   
     #include
    
      #include
     
       using namespace std; int sumdigits(string data); template
      
        out convert(in a); int main() { string data; string digit[] = {"zero","one","two","three","four","five","six","seven","eight","nine"}; string temp; while(cin>>data) { temp = convert
       
        (sumdigits(data)); for(int i = 0; i < temp.length(); i++) { cout<
        
         (temp[i])]; if (i != temp.length() - 1) cout<<" "; } cout<
         
          (data[data.length()-1]); sum += sumdigits(data.substr(0, data.length() - 1)); return sum; } template
          
            out convert(in a) { stringstream temp; temp<
           
            >b; return b; }
           
          
         
        
       
      
     
    
   
  


¡¾´ó ÖРС¡¿¡¾´òÓ¡¡¿ ¡¾·±Ìå¡¿¡¾Í¶¸å¡¿¡¾Êղء¿ ¡¾ÍƼö¡¿¡¾¾Ù±¨¡¿¡¾ÆÀÂÛ¡¿ ¡¾¹Ø±Õ¡¿ ¡¾·µ»Ø¶¥²¿¡¿
·ÖÏíµ½: 
ÉÏһƪ£ºPOJ 2923 Relocation(״ѹ+±³°ü£© ÏÂһƪ£º(ͼÂÛËã·¨Ö®2·ÖÆ¥Åä) hdu 1281£¨..

ÆÀÂÛ

ÕÊ¡¡¡¡ºÅ: ÃÜÂë: (ÐÂÓû§×¢²á)
Ñé Ö¤ Âë:
±í¡¡¡¡Çé:
ÄÚ¡¡¡¡ÈÝ:

¡¤Spring Boot Java£º (2025-12-26 16:20:19)
¡¤Spring Boot¤ÇHello (2025-12-26 16:20:15)
¡¤Spring ¤Î»ù±¾¤«¤éŒ (2025-12-26 16:20:12)
¡¤C++Ä£°å (template) (2025-12-26 15:49:49)
¡¤C ÓïÑÔÖÐÄ£°åµÄ¼¸ÖÖ (2025-12-26 15:49:47)