我的课程中有一个编程作业,我尽力了解一切,但我想在提交之前确保我的脚本是正确的。我需要找到一个三角形的区域,由公式给出:
面积= 1/2 *基础*高度
这是我的答案:
# The base and height of this triangle are inches
base = 12.0
height = 16.0
# The area of a triangle is 1/2 * base * height
area = 1/2 * base * height
print (area)
我的代码是否正确?
答案 0 :(得分:0)
是的,这段代码是正确的,通过将值分配给不同的变量,很清楚你做了什么。