题解 | #单词缩写#

单词缩写

https://www.nowcoder.com/practice/af2c953f9fc8464fa0e3252da8eb4131

#include <iostream>
#include<cstring>
using namespace std;
int main() {
    int n;
    cin>>n;
    while(n--)
    {
        string s;
        cin>>s;
        int len = strlen(s.c_str());
        if(len >= 10)
        {
            cout<<s[0];
            cout<<len-2;
            cout<<s[len-1]<<endl;
        }
        else
        {
            cout<<s<<endl;
        }
    }
}
// 64 位输出请用 printf("%lld")

全部评论

相关推荐

废铁汽车人:秋招真是牛鬼蛇神齐聚一堂
点赞 评论 收藏
分享
评论
点赞
收藏
分享
牛客网
牛客企业服务