题解列表

筛选

分解质因数

摘要:解题思路:    1.找出在(<b)的素数,素数会是因子    2.第一个for循环中循环需要分解的每一个因数    3.第二个for循环找到被分解的因数其每一个因子,不断往下循环找完为止参考代码:a……

图像相似度

摘要:解题思路:分别存入两个列表,一一比对注意事项:参考代码:m,n=map(int,input().split())myList1=[list(map(int,input().split())) for ……

编写题解 2879: 错误探测

摘要:解题思路:注意事项:参考代码:m=int(input())aList=[]flag1=1myList=[list(map(int,input().split())) for t in range(m)……

1073: 弟弟的作业

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

1074: 数字整除

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

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

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

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

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