#1.
This is the General C++ Programming sub-forum, whilst this belongs to Beginners.
#2.
Try to be less demanding and more acceptive with ANY feedback or help you get at all, we are doing this to help others, not to contend other.
#3.
Work on your spelling.
#4.
1 2 3 4 5 6 7 8 9 10 11 12 13 14
#include <iostream>
#include <cmath.h>
int main()
{
double dBase;
double dPower;
std::cout << "x^y :: Please enter x\n";
std::cin >> dBase;
std::cout << "x^y :: Please enter y\n";
std::cin >> dPower;
std::cout << pow(x,y) << "\n";
system("pause"); // Don't nag about the system call here or I WILL kill you. I am not in the mood to make a slightly more complex alternative - although better - for threads like these. Have a nice day. ~ Kyon
}