从键盘上输入三角形的底和高,输出三角形面积 程序怎么写

2024-11-21 21:03:46
推荐回答(2个)
回答1:

clear
input "请输入三角形的底:" to x
input "请输入三角形的高:" to y
s=x*y/2
?"三角形的面积是:",s

回答2:

用vb