C++ Program to Calculate Power of a Number

#include <iostream>
using namespace std;
int main(){
    int base, exp, i, result = 1;
 cout << "Enter base and exponent\n";
    cin >> base >> exp;
    // Calculate base^exponent by repetitively multiplying base
    for(i = 0; i < exp; i++){
        result = result * base;
    }
    cout << base << "^" << exp << " = " << result;
    return 0;
}

OUTPUT:

Enter base and exponent
3 4
3^4 = 81
Sharing Is Caring