题解 1042: [编程入门]电报加密

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

筛选

1042: [编程入门]电报加密

摘要:解题思路:灵活运用ctype函数注意事项:注意大小写参考代码:#define _CRT_SECURE_NO_WARNINGS#pragma warning(disable:6031)#include ……

1042题 :电报加密

摘要:# 自己写的代码 ```c #include #include int main() { char a[20]; gets(a); int len; len=strlen……

python50%错误

摘要:解题思路:不知道错在哪里注意事项:参考代码:a = input().split()b = []for i in a:    if 65 <= ord(i) <= 90 or 97 <= ord(i) ……