题解 2857: 加密的病历单

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

筛选

2857: 加密的病历单

摘要:解题思路:注意事项:参考代码:#include <iostream> #include <cstring> #include <algorithm> using namespace std; ……

2857: 加密的病历单

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

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……

2857: 加密的病历单

摘要:```python s = input() news = str() for c in s: if c.isupper(): news += c.lower() else: ……