收起
import math a = float(input()) b = float(input()) x = (-b + math.sqrt(2 * a * math.sin(60) * math.cos(60))) / (2 * a) print("x = %.2f" % x)
报告相同问题?