下降距离
[当物体由于重力而下落时,可以使用以下公式确定物体在特定时间段内下落的距离:
d=1/2gt^2
公式中的变量如下:
d
是距离,以米,- [
g
是9.8
,和- [
t
是对象掉落的时间,以秒为单位。编写名为
fallingDistance
的函数,该函数接受对象的下降时间(以seconds为单位)。该函数应返回在该时间间隔内物体掉落的距离,以米]为单位。
编写一个在循环中调用该函数以演示该功能的程序,该循环将值
1
到10
作为参数传递并显示返回值。#include<iostream> using namespace std; float fallingDistance(float); int main() { float t; //passing t as argument to fallingDistance function. for (t = 1; t < 10; t++) { cout << "For second" << t << "distance covered by object is" << fallingDistance(t) << endl; } return 0; } float fallingDistance(float time) { const float g = 9.8; float d; d = (1 / 2)(9.8)(time * time); return d; }
下落距离当物体由于重力而下落时,可以使用以下公式确定在特定时间段内物体下落的距离:d = 1 / 2gt ^ 2 ...
(1/2)
是整数数学