WERTYU (WERTYU, UVa10082)

来源:互联网 发布:车牌位置标识数据集 编辑:程序博客网 时间:2024/06/07 23:53

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.

相比switch case:用常量数组比较方便

#include <iostream>#include <stdio.h>#include <string.h>using namespace std;int main(){    char letter[] = "`1234567890-=QWERTYUIOP[]\\ASDFGHJKL;'ZXCVBNM,./";    unsigned int chr, i;    while ((chr = getchar()))    {        int ok = 0;                             //每次都需要更新的变量尽量声明在循环中        for (i = 1; i < strlen(letter); i++ )   //找到错位字符串的位置        {            if (chr == letter[i])            {                ok = 1;                break;            }        }        if (ok == 1)        {            putchar(letter[i-1]);        }        else        {            putchar(chr);        }    }    return 0;}
0 0