Question #1344

Write a c++ program which reads any two numbers(x,y) and prints x to the power y.

Expert's answer

#include <iostream>
#include <cmath>

using namespace std;

int main(int argc, char **argv)
{
& int x;
& int y;
& cout << "Please input any two numbers 'x' and 'y':" << endl;
& cin >> x >> y;
& cout << "'x' in power of 'y' is " << pow(x, y);
& return 0;
}

LATEST TUTORIALS
APPROVED BY CLIENTS