Question One hundred and twenty-eight: IBM Minus One

Source: Internet
Author: User

You may have heard of the book '2017-A Space Odyssey 'by Arthur C. clarke, or the film of the same name by Stanley Kubrick. in it a spaceship is sent from Earth to Saturn. the crew is put into stasis for the long flight, only two men are awake, and the ship is controlled by the intelligent computer HAL. but during the flight HAL is acting more and more strangely, and even starts to kill the crew on board. we don't tell you how the story ends, in case you want to read the book for yourself :-)

After the movie was released and became very popular, there was some discussion as to what the name 'hal 'actually meant. some thought that it might be an abbreviation for 'heuristic ALgorithm '. but the most popular explanation is the following: if you replace every letter in the word HAL by its successor in the alphabet, you get... IBM.

Perhaps there are even more acronyms related in this strange way! You are to write a program that may help to find this out.


Input

The input starts with the integer n on a line by itself-this is the number of strings to follow. The following n lines each contain one string of at most 50 upper-case letters.

Output

For each string in the input, first output the number of the string, as shown in the sample output. the print the string start is derived from the input string by replacing every time by the following letter in the alphabet, and replacing 'Z' by 'A '.

Print a blank line after each test case.

Sample Input


2
HAL
SWERC
Sample Output


String #1
IBM

String #2
TXFSD

[Plain]
# Include <stdio. h>
# Include <string. h>
Int main (){
Int length;
Int num;
Int I;
Int count = 1;
Char array [51];
Scanf ("% d", & num );
Getchar ();
While (num --) {gets (array );
Length = strlen (array );
For (I = 0; I <length; I ++)
{If (array [I]> = 'A' & array [I] <'Z ')
{Array [I] + = 1;
} Else if (array [I] = 'Z ')
{Array [I] = 'a ';
}}
Printf ("String # % d \ n", count ++ );
For (I = 0; I <length; I ++)
{Printf ("% c", array [I]);
}
Printf ("\ n ");}
Return 0 ;}# include <stdio. h>
# Include <string. h>

Int main ()
{
Int length;
Int num;
Int I;
Int count = 1;
Char array [51];

Scanf ("% d", & num );
Getchar ();

While (num --)
{
Gets (array );

Length = strlen (array );
For (I = 0; I <length; I ++)
{
If (array [I]> = 'A' & array [I] <'Z ')
{
Array [I] + = 1;
}
Else if (array [I] = 'Z ')
{
Array [I] = 'a ';
}
}
Printf ("String # % d \ n", count ++ );

For (I = 0; I <length; I ++)
{
Printf ("% c", array [I]);
}

Printf ("\ n ");

}

Return 0;
}

 

 
(The output of this question is a bit problematic, that is, the output is empty)

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.