练习2-6 计算物体自由下落的距离 (5 分) #include<stdio.h> int main(){ float h ; int t = 3 ; int g = 10 ; h = 0.5 * g * t * t ; printf("height = %.2f",h) ; }