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