题解:
1、考点物理知识
2、自由落体高度计算公式:S=1/2(gt)
3、时间计算:两人的距离除以子弹速度
#include <iostream>
using namespace std;
int main(){
int t;
cin >> t;
while(t--){
double L,V1,V2;
cin >> L >> V1 >> V2;
printf("%.6f %.6f\n",0.5*9.8*(L/V1)*(L/V1),(L/V1)*V2);
}
return 0;
}