概述
思路:水题
#include<bits/stdc++.h>
using namespace std;
int main()
{
int n;
scanf("%d",&n);
for (int i = 0;i<n;i++)
{
string s;
cin >> s;
if (s.size()<=10)
cout << s << endl;
else
{
string ss;
ss+=s[0];
// cout << s[0] << " " << ss[0] << endl;
int num = s.size()-2;
string temp;
stringstream sss;
sss << num;
sss >> temp;
ss+=temp;
ss+=s[s.size()-1];
cout << ss << endl;
}
}
}
最后
以上就是追寻口红为你收集整理的CodeForces 71A Way Too Long Words的全部内容,希望文章能够帮你解决CodeForces 71A Way Too Long Words所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复