0
点赞
收藏
分享

微信扫一扫

Codeforces Beta Round #65 (Div. 2) / 71A Way Too Long Words(字符串操作)



A. Way Too Long Words



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



time limit per test



memory limit per test



input



output


localization" or "internationalization" are so long that writing them many times in one text is quite tiresome.

too long, if its length is strictly more than 10

This abbreviation is made like this: we write down the first and the last letter of a word and between them we write the number of letters between the first and the last letters. That number is in decimal system and doesn't contain any leading zeroes.

localization" will be spelt as "l10n", and "internationalization» will be spelt as "i18n".

You are suggested to automatize the process of changing the words with abbreviations. At that all too long words should be replaced by the abbreviation and the words that are not too long should not undergo any changes.


Input



n (1 ≤ n ≤ 100). Each of the following n lines contains one word. All the words consist of lowercase Latin letters and possess the lengths of from 1 to 100


Output



n lines. The i-th line should contain the result of replacing of the i-th word from the input data.


Sample test(s)



input



4 word localization internationalization pneumonoultramicroscopicsilicovolcanoconiosis



output



word l10n i18n p43s



注意使用gets前读掉'\n'


完整代码:

/*0ms,0KB*/

#include<cstdio>
#include<cstring>

char word[101];

int main()
{
	int n, len;
	scanf("%d", &n);
	getchar();///使用gets前一定要把'\n'读掉!
	while (n--)
	{
		memset(word, 0, sizeof(word));
		gets(word);
		len = strlen(word);
		if (len > 10)
			printf("%c%d%c\n", word[0], len - 2, word[len - 1]);
		else
			printf("%s\n", word);
	}
	return 0;
}




举报

相关推荐

0 条评论