Write a c++ program which reads any two numbers(x,y) and prints x to the power y.
1
Expert's answer
2011-01-17T05:30:35-0500
#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; }
Comments
Leave a comment