gyzx029 • 16天前
how to do this question
Comments:
混合运算
using namespace std;
int main() {
double a , b ,c , d , e ,f; cin >> a >> b >> c >> d >> e; f = b + c / (d - e); cout << a * ( b + c ) / f << endl; return 0;
}