Each of the following programs has errors. Find as many as you can.
// This program uses a loop to raise a number to a power.#include <iostream>using namespace std;int main( ){ int num, bigNum, power, count; cout ≪ "Enter an integer: "; cin ≫ num; cout ≪ "What power do you want it raised to? "; cin ≫ power; bigNum = num; while (count++<power); bigNum *= num; cout ≪ "The result is ≪ bigNum ≪ endl; return 0;}
We need at least 10 more requests to produce the solution.
0 / 10 have requested this problem solution
The more requests, the faster the answer.