how to do this question

gyzx029  •  16天前


how to do this question


Comments:

混合运算

include

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;

}


CF  •  8天前