标签:text class div 格式 script std 保留 编写 psu
一个物体从100米的高空自由落下。编写程序,求它在前3秒内下落的垂直距离。设重力加速度为10米/秒?2??。
本题目没有输入。
按照下列格式输出
height = 垂直距离值
结果保留2位小数。
#include<stdio.h> int main(void){ float h; h=0.5*10*3*3; printf("height = %.2f",h); return 0; }
标签:text class div 格式 script std 保留 编写 psu
原文地址:https://www.cnblogs.com/Kimsohyun/p/12578855.html