2857: 加密的病历单(python)
摘要:解题思路:注意事项:参考代码:s = input()
s1 = ""
for i in s:
if (i >= 'x' and i <= 'z') or ……
Python代码(简洁)
摘要:s = input().strip()
result = ''
#注意超出字母表之后就会重新回到A或a
for char in s:
if char.isupper():
……
2857: 加密的病历单
摘要:#include<stdio.h>
#include<math.h>
#include<string.h>
# define N 100001
int check(char c)
{……
加密的病历单(清晰明了)
摘要:解题思路:注意事项:参考代码: #include<stdio.h> #include<string.h> //反转数组 void reverseArray(char* a, i……
2857: 加密的病历单 C++
摘要:解题思路: 加密时: 1. 反转 2. 大小写转换 3. 循环左移3位 则解密时: &nbs
题解 2857: 加密的病历单
摘要: #include
using namespace std;
char a[200],b[200];
int n,m;
int main(){
……
c语言题解c语言题解c语言题解
摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <stdlib.h>#include<string.h>#include<math.h>int main(){ ……
java--study||O.o
摘要:参考代码:import java.util.Scanner;
public class Main
{ public static void main(String[] args)
……
题解 2857: 加密的病历单
摘要:解题思路:注意事项:三次遍历得出结果;注意循环格式,以及是哪个字符串;切勿弄混!参考代码:#include using namespace std;
char b[60]= {'w'……