include
\(<\) iostream \(>\) using namespace std; int main ( ) \(\\{\) int num, bigNum,
power, count; cout \(<<\) "…
#
A) // 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: "; \(\operatorname{cin} \quad>>\) 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
\\}
B) // This program averages a set of numbers. # include
using namespace std;
int main()
\\{
int numcount, total; double average;
cout \(<<\) "How many numbers do you want to average? "; cin \(>>\) numcount for
\((\text { int count }=0 ; \text { count }<\text { numcount } ; \text { count
}++)\)
\\{
int num; cout \(<<\) "Enter a number: ";
\\[
\operatorname{cin} \quad>>\text { num }
\\]
total \(+=n u m\) count \(++\)
\\}
average \(=\) total / numCount; cout \(<<\) "The average is \(<<\) average \(<<\) endl
return 0 \\}