码迷,mamicode.com
首页 > 其他好文 > 详细

[UVa] WERTYU(10080)

时间:2016-06-09 22:19:44      阅读:340      评论:0      收藏:0      [点我收藏+]

标签:

技术分享

简直水到爆炸的题目,还做了这么久,简直智商拯救无望:)

ac代码:

#include <cstdio>
#include <cstring>
using namespace std;
char str[] = "`1234567890-=QWERTYUIOPP[]\\ASDFGHJKL;‘ZXCVBNM,./";
int main() {
    char c;
    while(scanf("%c", &c) != EOF){
        int i;
        for (i = 0; str[i]&&str[i] != c; i++);
        if(str[i]) printf("%c",str[i - 1]);
        else printf("%c", c);
    }
    return 0;
}

 

[UVa] WERTYU(10080)

标签:

原文地址:http://www.cnblogs.com/MATLABlearning001/p/5572726.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!