CodeForces - 71A Way Too Long Words
程序员文章站
2022-07-15 12:40:06
...
做完这个我去试试1000分的…
怎么还是那么水…
#include <iostream>
#include <string>
using namespace std;
int main(){
string s;
int n;
cin >> n;
while(n--){
cin >> s;
if(s.length() > 10)
cout << s[0] << s.length()-2 << s[s.length()-1] << endl;
else
cout << s << endl;
}
return 0;
}
走 1000 分的