2857: 加密的病历单(C语言) 摘要: #include #include int main() { char a[50]; scanf("%s",a); int n=strlen(a); //原文…… 题解列表 2023年09月22日 0 点赞 0 评论 253 浏览 评分:0.0
c语言代码解决问题 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ char str[61],str1[61]; gets(str); str[…… 题解列表 2023年06月06日 0 点赞 0 评论 175 浏览 评分:0.0
2857: 加密的病历单 摘要:```python s = input() news = str() for c in s: if c.isupper(): news += c.lower() else: …… 题解列表 2023年05月23日 0 点赞 0 评论 221 浏览 评分:0.0
2857: 加密的病历单 摘要:解题思路:注意事项:参考代码:#include <iostream> #include <cstring> #include <algorithm> using namespace std; …… 题解列表 2023年04月20日 0 点赞 0 评论 143 浏览 评分:0.0