If i enter t test cases it runs for t-1 only?

Q.
Sometimes some words like “localization” or “internationalization” are so long that writing them many times in one text is quite tiresome.

Let’s consider a word too long, if its length is strictly more than 10 characters. All too long words should be replaced with a special abbreviation.

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.

Thus, “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
The first line contains an integer 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 characters.

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

Examples
inputCopy
4
word
localization
internationalization
pneumonoultramicroscopicsilicovolcanoconiosis
outputCopy
word
l10n
i18n
p43s

ATTEMPT

#include
#include
using namespace std;
int main()
{
int n,k=0;
cin>>n;
for(int i=1;i<=n;++i)
{
char a_i[100];
cin.getline(a_i,100);
k=strlen(a_i);
if(k>10)
cout<<a_i[0]<<(k-2)<<a_i[k-1]<<"\n";
else
cout<<a_i<<"\n";
}
return 0;
}

Hello @prerak_semwal your code should run for all the t test cases.
if you have any problem in this you can do this by:
int test;
cin>>test;
while(test-- {
//your code goed here for every test case.
}

pls,

  1. show by using for loop,
  2. pls copy my code, and then resend after making changes.

NOTE- its a codeforces problem, WAY TOO LONG WORDS

@tusharaggarwal272 33m

pls,

  1. show by using for loop,
  2. pls copy my code, and then resend after making changes.

NOTE- its a codeforces problem, WAY TOO LONG WORDS

Hello @prerak_semwal your code is correct and it will run for n times what is the problem that you are facing

@tusharaggarwal272sir i would request you to run code on codeforces compiler / codeblocks…its not showing ACCEPTED on codeforces rather faiking on some test case…pls run my attempt first

Hello @prerak_semwal you need to think about your logic that why it is not running.

mark the doubt clear thanks.

1 Like

I hope I’ve cleared your doubt. I ask you to please rate your experience here
Your feedback is very important. It helps us improve our platform and hence provide you
the learning experience you deserve.

On the off chance, you still have some questions or not find the answers satisfactory, you may reopen
the doubt.