c语言程序设计.一个物体从100米的高处*落下,编写程序,求它在前三秒内下落的垂直距离,重力加速度为
问题描述:
c语言程序设计.一个物体从100米的高处*落下,编写程序,求它在前三秒内下落的垂直距离,重力加速度为
答
#include
#define G 9.8
void main()
{int y=3;
printf("the result is %.2f\n",0.5*G*y*y);
getch();
}