This is on zyBooks. Please write the code in C++, please!
![This is on zyBooks Please write the code in C please class=](https://us-static.z-dn.net/files/dd0/15ad4b11cddb707f4f4c483be943dc7f.png)
The program is an illustration of built-in functions
They are named program statements that have a predefined purpose
The program written in C++, where comments are used where required is as follows:
#include <iostream>
#include <cmath>
#include <ios>
#include <iomanip>
using namespace std;
int main (){
double x;
double y;
double z;
cin>>x;
cin>>y;
//This calculates the given expression
z = pow(sqrt(y),x);
cout << fixed<<setprecision(2);
cout<<z<<endl;
return 0;
}
Read more about python functions at:
https://brainly.com/question/14284563