Codeforces 71A Way Too Long Words

Posted cmlhc

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Codeforces 71A Way Too Long Words相关的知识,希望对你有一定的参考价值。

技术分享图片

题目链接

http://codeforces.com/problemset/problem/71/A

#include<iostream>
#include<string>
using namespace std;

int main()
{
    int n;
    cin>>n;
    while(n--)
    {
        string str;
        cin>>str;
        int len=str.length();
        if(len<=10)
        {
            cout<<str<<endl;
        }else
        {
            len=len-2;
            cout<<str[0]<<len<<str[len+1]<<endl;
        }

    }


    return 0;
}

 

以上是关于Codeforces 71A Way Too Long Words的主要内容,如果未能解决你的问题,请参考以下文章

[字符串] CF-71A. Way Too Long Words

codeforces 2B The least round way

[Codeforces] Too Many Segments

codeforces 723E - One-Way Reform

CodeForces 723E One-Way Reform

codeforces 723E. One-Way Reform