本站遷移

因為我最近租用了網路空間以及網域,
故本站已遷移至新網站~
這邊的資訊已經正在進行搬移的工作~
希望各位可以到新網站去逛XD

New Website:
http://knightzone.org/

搜尋此網誌

2011年3月9日 星期三

[UVa]10222:Decode the Mad man

先把鍵盤輸入成一個字元陣列,這樣比較好轉換。

[C](0.016)
#include<stdio.h>
int main()
{
const char keyboard[] = "`1234567890-=qwertyuiop[]\\asdfghjkl;'zxcvbnm,./";
char input;
while( (input = getchar()) != EOF )
{
if( input == ' ' || input == '\n' )
{
putchar( input );
continue;
}
int i;
for( i = 0 ; input != keyboard[i] ; i++ );
putchar( keyboard[i-2] );
}
return 0;
}
view raw UVa10222.c hosted with ❤ by GitHub

0 意見:

張貼留言