python 示例(摘抄)
摘要:# 计算一元二次方程的根 import math while True: a = float(input('Enter coefficient a: ')) b = float(input('Enter coefficient b: ')) c = float(input('Enter coeffi
阅读全文
posted @ 2020-03-25 17:25
posted @ 2020-03-25 17:25