A

来源:互联网 发布:明源软件怎么样 编辑:程序博客网 时间:2024/05/17 06:32

This task is so easy that the description is omitted.

Sample Input

A numeronym is a number-based word.Most commonly, a numeronym is a word where a number is used to form anabbreviation  (albeit not an acronym or an initialism). Pronouncing theletters and numbers may sound similar to the full word: "K9" for "canine"(phonetically: "kay" + "nine"). A similar example in French is "K7" for"cassette" (phonetically: "ka" + "sept").Alternatively, the letters between the first and last are replaced by anumber representing the number of letters omitted, such as "i18n" for"internationalization". Sometimes the last letter will also be countedand omitted.According to Tex Texin, the first numeronym of this kind was "S12n", theelectronic mail account name given to DEC employee Jan Scherpenhuizen bya system administrator because his surname was too long to be an accountname. Colleagues who found Jan's name unpronounceable often referred tohim verbally as "S12n". The use of such numeronyms became part of DECcorporate culture.

Sample Output

A n7m is a n4r-b3d w2d.M2t c6y, a n7m is a w2d w3e a n4r is u2d to f2m ana10n  (a4t n1t an a5m or an i8m). P9g t1el5s a1d n5s m1y s3d s5r to t1e f2l w2d: "K9" f1r "c4e"(p10y: "k1y" + "n2e"). A s5r e5e in F4h is "K7" f1r"c6e" (p10y: "ka" + "s2t").A11y, t1e l5s b5n t1e f3t a1d l2t a1e r6d by an4r r10g t1e n4r of l5s o5d, s2h as "i18n" f1r"i18n". S7s t1e l2t l4r w2l a2o be c5da1d o5d.A7g to T1x T3n, t1e f3t n7m of t2s k2d w1s "S12n", t1ee8c m2l a5t n2e g3n to D1C e6e J1n S12n bya s4m a11r b5e h1s s5e w1s t1o l2g to be an a5tn2e. C8s w1o f3d J1n's n2e u13e o3n r6d toh1m v6y as "S12n". T1e u1e of s2h n8s b4e p2t of D1C

c7e c5e.

#include <cstdio>#include <cstring>int main(){    char s[1010];    int i,t,k;    while(gets(s))    {        k = strlen(s);        t = 0;        int flag = 0;        for(i = 0; i < k; i++)        {            if((('a' <= s[i] && s[i] <= 'z') || ('A' <= s[i] && s[i] <= 'Z')) && !flag)            {                printf("%c",s[i]);                flag = 1;            }            else if((('a' <= s[i] && s[i] <= 'z') || ('A' <= s[i] && s[i] <= 'Z')) && flag)            {                if(i+1 < k && (('a' <= s[i+1] && s[i+1] <= 'z') || ('A' <= s[i+1] && s[i+1] <= 'Z')))                    t++;                else                {                    if(t > 0)                    printf("%d",t);                    t = 0;                    flag = 0;                    printf("%c",s[i]);                }            }            else            {                printf("%c",s[i]);                flag = 0;            }        }        printf("\n");    }    return 0;}


0 0
原创粉丝点击