欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

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 分的

相关标签: 水水水水