0

直径と価格を考慮して、円形オブジェクトの平方あたりのコストを計算しようとしています。

これが私が得たものです:

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()

私は数学が苦手なので、公式は正しいのだろうか?

4

3 に答える 3

0

円の面積を求める公式は ですpi*r*r。平方インチあたりのコストを取得するには、次のようにします。price / area

于 2013-07-30T11:39:51.743 に答える