c++字符串加密病历单 摘要:解题思路:注意事项:xyz的逆序输出参考代码:#include <bits/stdc++.h>using namespace std;int main (){ string tmp; char ans…… 题解列表 2022年11月19日 0 点赞 0 评论 1053 浏览 评分:7.3
2857: 加密的病历单 C++ 摘要:解题思路: 加密时: 1. 反转 2. 大小写转换 3. 循环左移3位 则解密时: &nbs 题解列表 2023年02月15日 0 点赞 0 评论 661 浏览 评分:9.9
2857: 加密的病历单(python) 摘要:解题思路:注意事项:参考代码:s = input() s1 = "" for i in s: if (i >= 'x' and i <= 'z') or …… 题解列表 2023年02月23日 0 点赞 0 评论 554 浏览 评分:9.9
c语言题解c语言题解c语言题解 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <stdlib.h>#include<string.h>#include<math.h>int main(){ …… 题解列表 2023年03月04日 0 点赞 0 评论 734 浏览 评分:9.9
2857: 加密的病历单 摘要:#include<stdio.h> #include<math.h> #include<string.h> # define N 100001 int check(char c) {…… 题解列表 2023年03月06日 0 点赞 0 评论 701 浏览 评分:9.9
2857: 加密的病历单 摘要:解题思路:注意事项:参考代码:#include <iostream> #include <cstring> #include <algorithm> using namespace std; …… 题解列表 2023年04月20日 0 点赞 0 评论 628 浏览 评分:0.0
2857: 加密的病历单 ```pythons=input()news=str()forcins:ifc.isupper():news+=c.lower()else:news+=c.upper()news=news[::-1]d={'x':'a','y':'b','z':'c', 题解列表 2023年05月23日 0 点赞 0 评论 550 浏览 评分:0.0
c语言代码解决问题 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ char str[61],str1[61]; gets(str); str[…… 题解列表 2023年06月06日 0 点赞 0 评论 458 浏览 评分:0.0
2857: 加密的病历单(C语言) 摘要: #include #include int main() { char a[50]; scanf("%s",a); int n=strlen(a); //原文…… 题解列表 2023年09月22日 0 点赞 0 评论 657 浏览 评分:0.0
加密的病历单(使用便利的函数) 参考代码:```c#include#include#includeintmain(){chara[100];//题目的50少了捏gets(a);intlen=strlen(a);for(inti=len-1;i>=0;i--){intn=0;if(isupper(a[i]))//判断大写字母{a[i] 题解列表 2023年09月27日 0 点赞 0 评论 488 浏览 评分:0.0