题解列表

筛选

对方干净利落的特点

摘要:解题思路:无注意事项:无参考代码:print("**************************")print("Hello World!")print("********************……

趣味儿童与人格不好

摘要:解题思路:无注意事项:无参考代码:b=input()b=int(b)e=0for i in range(2,b):    if b%i==0:        e=1        breakif e=……

球弹跳高度

摘要:解题思路:累加高度注意事项:参考代码:h=int(input())m=hfor i in range(10):    m=m+h    h=h/2print('%g'%m)print(……

2836: 数组逆序重放

摘要:解题思路:注意事项:参考代码:n=int(input())s=list(map(int,input().split()))sq=s[::-1]print(*sq)……

2815: 求特殊自然数

摘要:解题思路:注意事项:参考代码:for a in range(1,7):    for b in range(0,7):        for c in range(1,7):            i……

2814: 正常血压

摘要:解题思路:注意事项:参考代码:n=int(input())a=[0]*nb=[0]*nt=[0]*nfor i in range(n):    a[i],b[i]=map(int,input().sp……