#include <iostream>
#include <cmath>
using namespace std;
int main() {
double x=12.3,y,z;
y = sqrt(pow(x,3)/10) + exp((15*pow(x,4))/(pow(x,5) - 2.5));
z = sqrt(abs(pow(x,3) - 0.53));
cout << "Y: " << y << endl << "Z: " << z;
}
Copyright © 2024 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
#include <iostream>
#include <cmath>
using namespace std;
int main() {
double x=12.3,y,z;
y = sqrt(pow(x,3)/10) + exp((15*pow(x,4))/(pow(x,5) - 2.5));
z = sqrt(abs(pow(x,3) - 0.53));
cout << "Y: " << y << endl << "Z: " << z;
}