题解列表

筛选

1061: 二级C语言-计负均正

摘要:```python li = list(map(int,input().split())) li1 = list(map(int,input().split())) #题中示例是两行输入 li……

1063: 二级C语言-统计字符

摘要:```python ss = input() # 英文字母、空格、数字和其它字符 alpha,space,num,other=0,0,0,0 for i in ss: if i.is……

1074: 数字整除

摘要:```python n = int(input()) #初始值 while n!=0: #n = 0 时停止 lest = n//10 if (lest-(n%10)……

不能没落的strcmp和strcpy!!!

摘要:解题思路:strcmp函数:若返回值为0,说明两个字符串相等。若返回值小于0,说明 str1 小于 str2。若返回值大于0,说明 str1 大于 str2。作用: 用于比较两个字符串。函数原型: i……

1073: 弟弟的作业

摘要:```python score = 0 while True: try: user = input().split("=") if user[1] =……

java真的很简单

摘要:import java.util.Scanner; import java.util.Arrays; public class Main { public static void main……

排序+新设数组

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