Nov 12, 2015 at 8:14pm
How can I make a console app that shows numbers which is xyz=x^x+y^y+z^z ?
Nov 12, 2015 at 8:23pm
You can use the function pow (which is the header math.h). It's written like this -> pow(base,exponent) and it returns the value of the power.
otherwise you can make a cicle with the base * itself exponent times.