Possible Duplicate:
How to raise a double value by power of 12?
In 10. power / calculation / Power calculations
In object C for the iPhone, how would I calculate x^y? Getting the values by popping a stack
In object C for the iPhone, how would I calculate x^y? Getting the values by popping a stack |
|||||||||||
|
This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.
|
You Should to
|
|||
|
|
|
You can use pow(x,y). It returns a double value. To cast to an integer, myPowerNum = (int)pow((double)x, (double)y); |
|||
|
|