題目連結: https://zerojudge.tw/ShowProblem?problemid=d226
# 解題思路
畫下 vt 圖吧,很容易發現不管是等速度運動或是等加速度運動其平均速度皆為 v
所以,答案為 v*(2t)
# 程式碼
#include <iostream> | |
using namespace std; | |
int main() | |
{ | |
int a ,b; | |
while(cin>>a >>b) | |
cout<<a*b*2<<endl; | |
} |
題目連結: https://zerojudge.tw/ShowProblem?problemid=d226
畫下 vt 圖吧,很容易發現不管是等速度運動或是等加速度運動其平均速度皆為 v
所以,答案為 v*(2t)
#include <iostream> | |
using namespace std; | |
int main() | |
{ | |
int a ,b; | |
while(cin>>a >>b) | |
cout<<a*b*2<<endl; | |
} |