https://uva.onlinejudge.org/index.php?option=com_onlinejudge&Itemid=8&category=94&page=show_problem&problem=1012

思路:题目为质点有初速度和匀加速度a,t时间后速度为v,那么2t时间内的位移为多少?

设初速度为v0,加速度为a,t时间后速度为v=v0+at;位移s=v0*t+a*t^2/2;

2t时间内的位移为s1 = v0*2t+a*(2t)^2 / 2 =2v0*t+2a*t^2=2t(v0+at)=2tv;

 #include<iostream>
using namespace std; int main()
{
int v,t;
while(cin>>v>>t)
{
cout<<*v*t<<endl;
}
return ;
}
05-11 13:29