import math a=input("please input a:\n") b=input("please input b:\n") c=input("please input c:\n") #*********begin******** #********end********* else: print("this is not triangle")请补充程序。输入三角形的3条边,判断是否组成三角形。若能,计算三角形面积并输出。
时间: 2023-08-18 13:09:44 浏览: 152
c++用函数写输入三边——判断三角形形状并计算面积周长
5星 · 资源好评率100%
好的,以下是 Python 代码实现:
```python
import math
a = float(input("please input a:\n"))
b = float(input("please input b:\n"))
c = float(input("please input c:\n"))
# 判断是否为三角形
if a + b > c and a + c > b and b + c > a:
# 计算半周长
p = (a + b + c) / 2
# 计算面积
area = math.sqrt(p * (p - a) * (p - b) * (p - c))
print("This is a triangle, and the area of the triangle is:", area)
else:
print("This is not a triangle")
```
这段代码会根据用户输入的三条边长,判断是否为三角形,如果是三角形则计算并输出三角形的面积,如果不是则输出提示信息。
阅读全文