#include <iostream> #include <stdio.h> #include <cstring> #include <string> #include <algorithm> using namespace std; int main() { string a; while (getline(cin, a)) { int len = a.size(); if (a == "!") break; for (int i = 0; i < len; i++) { if (a[i] >= 'A'&&a[i] <= 'Z') cout << char('Z' - (a[i] - 'A')); else if (a[i] >= 'a'&&a[i] <= 'z') cout << char('z' - (a[i] - 'a')); else cout << a[i]; } cout << endl; } return 0; }
0.0分
21 人评分
小明A+B (C语言代码)浏览:1316 |
【亲和数】 (C语言代码)浏览:908 |
A+B for Input-Output Practice (III) (C语言代码)浏览:592 |
C语言程序设计教程(第三版)课后习题7.5 (C语言代码)浏览:900 |
C语言程序设计教程(第三版)课后习题8.7 (C语言代码)浏览:609 |
C语言程序设计教程(第三版)课后习题11.5 (C语言代码)浏览:1495 |
整除的尾数 (C语言代码)浏览:852 |
C语言程序设计教程(第三版)课后习题9.3 (C语言代码)浏览:630 |
小O的数字 (C++代码)浏览:806 |
C语言程序设计教程(第三版)课后习题8.3 (C++代码)浏览:527 |