20 lines
323 B
C++
20 lines
323 B
C++
|
Multiply a number by a power
|
||
|
|
||
|
#include <iostream>
|
||
|
using namespace std;
|
||
|
int main()
|
||
|
{
|
||
|
int number,power,count,i;
|
||
|
|
||
|
cout << "Enter Number: "; cin >> number;
|
||
|
cout << "Enter the power: "; cin >> power;
|
||
|
|
||
|
count = 1;
|
||
|
for (i=1; i <=power; i++)
|
||
|
count = count*number;
|
||
|
|
||
|
cout << count << endl;
|
||
|
|
||
|
return 0;
|
||
|
}
|