题解列表
python解求得最大值
摘要:### 解题代码:
```python
n = int(input())
sz = [list(map(int, input().strip().split())) for _ in range……
1042: [编程入门]电报加密
摘要:解题思路:注意事项:参考代码:s = input()
arr = ""
for i in range(len(s)):
if s[i] == ' ':
……
1196: 去掉空格
摘要:解题思路:注意事项:参考代码:while True:
try:
s = input()
print(s.replace(' ', '……
1124: C语言训练-大、小写问题
摘要:解题思路:注意事项: 参考代码:print(input().lower())……
1130: C语言训练-数字母
摘要:注意事项:需要了解并熟练使用str.isalpha()函数。参考代码:s = input() #字符串类型的输入
cnt = 0 #计数
for i in s:
if……
2819: 数字反转
摘要:```c
#include
int main()
{
int num,a;
scanf("%d",&num);
if(num==0) //按照输入的数字……
小白写代码,我懂你!!
摘要:解题思路:注意事项:参考代码:#include <stdio.h>#define PI 3.14159int main(){int r ,h;printf("please input r and h:……
编写题解 1012: [编程入门]字符串分类统计
摘要:解题思路:数字在ascll中是48到57字母大写是65到90 小写是97到122注意事项:参考代码:import java.util.*;public class Main { public ……