题解列表

筛选

二次方程求解

摘要:解题思路:注意事项:参考代码:import matha,b,c=map(eval,input().split())dt=b*b-4*a*cif dt>=0:    x1=((-1)*b+math.sq……

约瑟夫问题模拟解法(易懂)

摘要:解题思路:采用逐个模拟的思路解决约瑟夫环的问题注意事项:参考代码:n = int(input()) m = 3 people = []                         #这个