Power Finding Program
www.programmingcalculator.com
https://nikhilnihal.github.io/programmingcalculator/index.html
C++ PROGRAM FOR FINDING POWER
https://nikhilnihal.github.io/programmingcalculator/index.html
C++ PROGRAM FOR FINDING POWER
#include <bits/stdc++.h>
using namespace std;
int main() {
int exp;
float base, power = 1;
cin >> base >> exp;
while (exp != 0) {
power *= base;
--exp;
}
cout << "Result = " << power;
return 0;
}
Comments
Post a Comment