欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

WERTYU UVa10082

程序员文章站 2022-06-09 20:16:17
...

WERTYU UVa10082
原题链接

#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));
		}
	}
}