Question: Build an execution table to calculate 3 ^ 4 #include using namespace std; int main() { int num, bigNum, power, count=1; cout cin>>num; cout cin>>power;
#include
using namespace std;
int main()
{
int num, bigNum, power, count=1;
cout
cin>>num;
cout
cin>>power;
bigNum=num;
while(count++ bigNum*=num; cout return 0; }
// This program uses a loop to raise a number to a power. #include
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
