涉及圆形区域的逻辑错误

时间:2018-06-19 09:51:42

标签: python python-3.x python-3.6 area subroutine

在python中,不知道为什么,它是某种逻辑错误,因为它不是正确的数字,我应该创建一个计算圆的面积的算法从半径。

My python code

4 个答案:

答案 0 :(得分:1)

math.sqrt() 

表示计算平方根计算(√)。 你只需要

r * r

解决这个问题。

答案 1 :(得分:0)

使用此

area = (22/7)((r)**2)
希望它有所帮助。

答案 2 :(得分:0)

您可以在不定义任何功能的情况下计算圆的面积。

尝试一下:

pi = 3.142
r = float(input("enter your radius of circle: "))

Area = pi * r * r

print("Area of the circle is: ", area)

答案 3 :(得分:0)

下面是查找圆的半径和周长

# Name
Name = raw_input("Enter Your Name: ")

# Give area for the circle
Area = input("Enter Area of the circle: ")

PI = 3.14

# Calculation of radius and circumference
R = (Area / PI )**0.5
C = (2 * PI * R)

print "Area of the Circle = %.2f"%Area 
print "Radius of Circle = %.2f"%R
print "Circumference of Circle = %.2f"%C