加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
Area of triangle 301 Bytes
一键复制 编辑 原始数据 按行查看 历史
vrushali3297 提交于 2020-10-02 15:07 . Create Area of triangle
a = 5
b = 6
c = 7
# 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)
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化