IBM Minus One

来源:百度知道 编辑:UC知道 时间:2024/05/17 00:17:05
IBM Minus One

--------------------------------------------------------------------------------

Time Limit: 1 Second Memory Limit: 32768 KB

--------------------------------------------------------------------------------

You may have heard of the book '2001 - 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

#include <stdio.h>
#include <string.h>
int main()
{
char a[50];
int n,l;
scanf("%d",&n);
for(int i=1;i<=n;i++)
{
scanf("%s",a);
for(int j=0;a[j];j++)
{
if(a[j]=='Z')a[j]='A';
else a[j]+=1;
}
printf("String #%d\n",i);
printf("%s\n\n",a);
}
return 0;
}