Respuesta :

The program is an illustration of built-in functions

What are built-in functions?

They are named program statements that have a predefined purpose

The actual program

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

ACCESS MORE