Python 查找三角形面积程序
数学公式:
这里是半周长,a、b和c是三角形的三条边。让我们了解以下示例。
查看此示例:
# Three sides of the triangle is a, b and c:
a = float(input('Enter first side: '))
b = float(input('Enter second side: '))
c = float(input('Enter third side: '))
# calculate the semi-perimeter
s = (a + b + c) / 2
# calculate the area
area = (s*(s-a)*(s-b)*(s-c)) ** 0.5
print('The area of the triangle is %0.2f' %area)
输出:
Enter first side: 5
Enter second side: 6
Enter third side: 7
The area of the triangle is 14.70
说明 –
我们将输入的三角形的三边存储在变量a、b和c中。然后,我们计算了三角形的半周长,并将该值放入三角形的面积公式中。
注意 – %0.2f表示至少0个宽度和2位小数。如果使用%0.5f,那么它将给出小数点后的5位数。