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; }
Finding a professional expert in "partial differential equations" in the advanced level is difficult.
You can find this expert in "Assignmentexpert.com" with confidence.
Exceptional experts! I appreciate your help. God bless you!
Comments