题解 2857: 加密的病历单

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

筛选

加密的病历单(使用便利的函数)

参考代码:```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]

c语言代码解决问题

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

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',

2857: 加密的病历单

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