📜  在 python 代码示例中查找角度 mbc

📅  最后修改于: 2022-03-11 14:45:09.167000             🧑  作者: Mango

代码示例1
from math import atan2
from math import degrees

ab = float(input())
bc = float(input())

print(str(round(degrees(atan2(ab, bc)))) + '°')