题解 2857: 加密的病历单

来看看其他人写的题解吧!要先自己动手做才会有提高哦! 
返回题目 | 我来写题解

筛选

c语言代码解决问题

摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ char str[61],str1[61]; gets(str); str[……

2857: 加密的病历单

摘要:解题思路:先左移,再逆序,再转换大小写我这个为什么提交91分啊,哪里有问题啊注意事项:参考代码:#define _CRT_SECURE_NO_WARNINGS 1#pragma warning (di……

c++字符串加密病历单

摘要:解题思路:注意事项:xyz的逆序输出参考代码:#include <bits/stdc++.h>using namespace std;int main (){ string tmp; char ans……

2857: 加密的病历单(python)

摘要:解题思路:注意事项:参考代码:s = input() s1 = "" for i in s:     if (i >= &#39;x&#39; and i <= &#39;z&#39;) or ……

题解 2857: 加密的病历单

摘要:解题思路:注意事项:三次遍历得出结果;注意循环格式,以及是哪个字符串;切勿弄混!参考代码:#include using namespace std; char b[60]= {&#39;w&#39;……

2857: 加密的病历单

摘要:#include<stdio.h> #include<math.h> #include<string.h> # define N 100001 int check(char c) {……

鱼鱼鱼鱼鱼鱼鱼

摘要:解题思路:注意事项:参考代码:import java.util.Scanner;public class Main {    public static void main(String[] args……

Python代码(简洁)

摘要:s = input().strip() result = '' #注意超出字母表之后就会重新回到A或a for char in s: if char.isupper(): ……

2857: 加密的病历单 C++

摘要:解题思路:    加密时:        1. 反转        2. 大小写转换        3. 循环左移3位    则解密时:     &nbs