本站遷移

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

New Website:
http://knightzone.org/

搜尋此網誌

2011年3月8日 星期二

[UVa]10082:WERTYU

先把鍵盤打成一個陣列,這樣比較好得解。

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

0 意見:

張貼留言