Problem B
Back to High School Physics
Input: standard input
Output: standard output
A particle has initial velocity and constant acceleration. Ifits velocity after certain time is v then what will its displacement be in twice ofthat time?
Input
The input will contain two integers in each line. Eachline makes one set of input. These two integers denote the value of v (-100 <= v <= 100) and t(0<=t<= 200) ( t means atthe time the particle gains that velocity)
Output
For each line of inputprint a single integer in one line denoting the displacement in double of that time.
Sample Input
0 05 12
Sample Output
0120
Shahriar Manzoor
程序:
02
03 int main()
04 {
05 int v = 0;
06 int t = 0;
07
08 while ( scanf( "%d %d" , & v , & t) != EOF)
09 {
10 printf( "%d \n " , 2 * v * t);
11 }
12
13 return 0;
14 }
本题考察粒子在初始速度与恒定加速度作用下,在特定时间内达到的速度与其两倍时间内位移的关系。输入包含粒子达到的速度v及其所需时间t,输出则为两倍时间内粒子的位移。
5万+

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



