练习2-6 计算物体自由下落的距离(5 分)

练习2-6 计算物体自由下落的距离(5 分)

一个物体从100米的高空自由落下。编写程序,求它在前3秒内下落的垂直距离。设重力加速度为10米/$秒^2$。

输入格式:

本题目没有输入。

输出格式:

按照下列格式输出

1
height = 垂直距离值

结果保留2位小数。

1
2
3
4
5
6
7
8
9
10
11
#include <stdio.h>
#include <math.h>

int main(void)
{
int g = 10, t = 3;
double height;
height = g * pow( t, 2 ) / 2;
printf( "height = %.2f\n", height );
return 0;
}
Your browser is out-of-date!

Update your browser to view this website correctly. Update my browser now

×