题解 2857: 加密的病历单

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

筛选

c++字符串加密病历单

摘要:解题思路:注意事项:xyz的逆序输出参考代码:#include <bits/stdc++.h>using namespace std;int main (){ string tmp; char ans……

小白操作解决病历单

摘要:解题思路:无注意事项:101参考代码:c=input()b=[]d=""for i in c:    if &#39;a&#39; <= i <= &#39;z&#39;:              ……

2857: 加密的病历单

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

2857: 加密的病历单

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

c语言代码解决问题

摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ char str[61],str1[61]; gets(str); str[……