How can I make a console app that shows numbers which is xyz=x^x+y^y+z^z ?
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.