Also, on line 24, you are doing integer division, so if the integers you input add to say, 5, you will get an average of 2, not 2.5 like you would expect.
Anyways, how do I do the powers? Can I do it in this way?
1 2 3 4 5 6 7 8
power1 = int1 * int1;
cout << "[1st Integer]Power to the second is: " << power1 << endl;
power2 = int1 * int1 * int1;
cout << "[1st Integer]Power the the third is: " << power2 << endl;
power3 = int2 * int2;
cout << "[2nd Integer]Power to the second is: " << power3 << endl;
power4 = int2 * int2 * int2;
cout << "[2nd Integer]Power to the third is: " << power4 << endl;