Welcome 微信登录
编程资源 图片资源库 蚂蚁家优选 PDF转换器 软件资源

软件开发小程序制作系统集成与运维空间租用硬件开发视频监控技术咨询与支持——联系电话:0311-88999002/88999003

首页 / 软件开发 / 数据结构与算法 / UVa 10082 WERTYU (water ver.)

UVa 10082 WERTYU (water ver.)2014-07-14 synapse7 10082 - WERTYU

Time limit: 3.000 seconds

http://uva.onlinejudge.org/index.php?option=com_onlinejudge&Itemid=8&category=24&page=show_problem&problem=1023

A common typing error is to place the hands on the keyboard one row to the right of the correct position. So "Q" is typed as "W" and "J" is typed as "K" and so on. You are to decode a message typed in this manner.

Input consists of several lines of text. Each line may contain digits, spaces, upper case letters (except Q, A, Z), or punctuation shown above [except back-quote (`)]. Keys labelled with words [Tab, BackSp, Control,etc.] are not represented in the input. You are to replace each letter or punction symbol by the one immediately to its left on the QWERTY keyboard shown above. Spaces in the input should be echoed in the output.

Sample Input

O S, GOMR YPFSU/

Output for Sample Input

I AM FINE TODAY.
完整代码:

/*0.013s*/#include<cstdio>const char s[] = "`1234567890-=QWERTYUIOP[]\ASDFGHJKL;"ZXCVBNM,./";int main(void){char c;int i;while (~(c = getchar())){for (i = 1; s[i] && s[i] != c; i++);putchar(s[i] ? s[i - 1] : c);}return 0;}