الأجوبة
def arclength():
pi=22/7
diameter = float(input('Diameter of circle: '))
angle = float(input('angle measure: '))
if angle >= 360:
print("Angle is not possible")
return
arc_length = (pi*diameter) * (angle/360)
print("Arc Length is: ", arc_length)
arclength()
الناتج المتوقع
Diameter of circle: 9
angle measure: 45
Arc Length is: 3.5357142857142856
أسئلة مشابهة
القوائم الدراسية التي ينتمي لها السؤال