(HDUStep 1.2.7) IBM Minus One (string operation), hdustep1.2.7
Question:
IBM Minus One |
Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 65536/32768 K (Java/Others) |
Total Submission (s): 3943 Accepted Submission (s): 1519 |
|
Problem DescriptionYou 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. |
InputThe 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. |
OutputFor 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 Input2HALSWERC |
Sample OutputString #1IBMString #2TXFSD |
|
SourceSouthwestern Europe 1997, Practice |
RecommendIgnatius. L |
Question Analysis:
Simple string operation. For example, 'B' = 'A' + 1... add 1 to each character in the given string and then output it.
The Code is as follows:
/** H. cpp ** Created on: January 28, 2015 * Author: Administrator */# include <iostream> # include <cstdio> using namespace std; int main () {int n; scanf ("% d", & n); int I; for (I = 0; I <n; ++ I) {string str; cin> str; int length = str. length (); int j; for (j = 0; j <length; ++ j) {if (str [j] = 'Z ') {str [j] = 'a';} else {str [j] + = 1 ;}} cout <"String #" <(I + 1) <endl; cout <str <endl;} return 0 ;}