#include #include using namespace std; int main() { float x = -111.11, y =0.5, z; z = pow(x,y); cout << "x=" << x; cout << "y=" << y; cout << "z=" << z << endl; return 0; }