算法之路四:codeforces 71A

#include
#include
#include
using namespace std;

const int maxn=105;


int main()
{
    int n;
    cin>>n;
    while(n--)
    {
        char word[maxn];
        scanf("%s",word);
        int n=strlen(word);
        if(n<=10)
        cout<else
        {
            printf("%c%d%c\n",word[0],n-2,word[n-1]);
        }
    }
    return 0;
}

你可能感兴趣的:(OJ)