直径と価格を考慮して、円形オブジェクトの平方あたりのコストを計算しようとしています。
これが私が得たものです:
import math
def main():
print("This program calculates the cost per square inch of a circular object.")
diameter = eval(input("What is the diameter of the object? "))
price = eval(input("What is the price of the whole object? "))
cost_per_square = (math.pi * (diameter / 2)**2) / price
print("The cost per square inch is $", round(cost_per_square, 2), sep="")
main()
私は数学が苦手なので、公式は正しいのだろうか?