A particle has initial velocity and acceleration. If its velocity after certain time is v then what will its
displacement be in twice of that time?
Input
The input will contain two integers in each line. Each line makes one set of input. These two integers
denote the value of v (−100 ≤ v ≤ 100) and t (0 ≤ t ≤ 200) (t means at the time the particle gains
that velocity)
Output
For each line of input print a single integer in one line denoting the displacement in double of that time.
Sample Input
0 0
5 12
Sample Output
0
displacement be in twice of that time?
Input
The input will contain two integers in each line. Each line makes one set of input. These two integers
denote the value of v (−100 ≤ v ≤ 100) and t (0 ≤ t ≤ 200) (t means at the time the particle gains
that velocity)
Output
For each line of input print a single integer in one line denoting the displacement in double of that time.
Sample Input
0 0
5 12
Sample Output
0
120
题意就是输入一个v,一个t,表示在t时间时质点的速度,问2t时间时,质点为位移。就是高中的知识,V=V0+at,x=2t * V0 + 1/2 * a * (2t)^2.整理一下就可以得到x = 2vt;
#include<cstdio>
using namespace std;
int main()
{
int v,t;
while(~scanf("%d%d",&v,&t))
{
printf("%d\n",2*v*t);
}
return 0;
}
本文介绍了一个简单的物理问题:已知质点在特定时间达到的速度,求解该质点在两倍时间内的位移。通过使用基本的物理公式,文章提供了一种简便的计算方法,并附带了一个C++代码示例来解决这个问题。
&spm=1001.2101.3001.5002&articleId=51558202&d=1&t=3&u=19cb8add07654adb9a742fbce660167c)
235

被折叠的 条评论
为什么被折叠?



