WERTYU UVa10082
程序员文章站
2022-06-09 20:16:17
...
#include <iostream>
#include<cctype>
#include<cstring>
using namespace std;
int main()
{
char seq[] = "`1234567890-=QWERTYUIOP[]\\ASDFGHJKL;'ZXCVBNM,./";
char input;
while (cin.get(input))
{
char* pre;
if (isspace(input))
cout << input;
else if ((pre = strchr(seq, input)) != NULL)
{
cout.put(*(pre-1));
}
}
}
上一篇: PTA习题解答 基础编程题目集 6-13 折半查找
下一篇: 安卓拨打电话功能的实现