牛客小白月赛58 A - E https://ac.nowcoder.com/acm/contest/41173 A - 双子爆破者 直接套公式 #include <bits/stdc++.h> using namespace std; void solve () { double M, m, v; cin >> M >> m >> v; cout << fixed << setprecision (3) << 1.0*m*v/(M-m) << endl; } int...