The power of a number can be calculated as x^y where x is the number and y is its power. Or simply it can be said that x is the base and y is its exponent. We calculate in math power of a number:

2^3 = 2*2*2 = 8

Calculate Power of a Number Using C++

To get started, create a C++ project using your favorite IDE. In this example, the program will contain the following perceptive section in the code.

Syntax:
/* power of Number */
Preprocessor directive/Header Files:

#include <iostream>
This manual explains to that preprocessor that includes the several materials in iostream header report inside the method just before compilation. This kind of report is essential to get input-output transactions.

#include<conio.h>
This file is known as a header report utilized in older MS-DOS compilers to produce content material end-user lines

#include<math.h>
This header file declares to the compiler that common mathematical operations will be used in that program.

Using namespace std;
Standard (std) is the standard namespace. Cout, cin and lots of other activities happen to be described in there. That built-in C++ catalog sessions are stored inside the standard namespace.

function main()
When the program run, the compiler execute the code from the main() function. Each program must contain the main() function. If the function does not contain the main function, it causes an error.
int/void is a return value.\

Syntax:

Int/void main()
{
//body of program
}

Main Program

#include<iostream>                                 /*Preprocessor directive*/
#include<conio.h>
#include<math.h>
using namespace std;
 int main()
  {
   int base;                                     /*Values Declaration*/
   int exponent;
   int i;
   int pow=1;                                         
   cout<<"Enter base of the number: ";
   cin>>base;    
   cout<<"Enter exponent of that base : ";                                      /*input values*/
   cin>>exponent;
   for(i=exponent;i>0;i--)
   {
   pow=pow*base;                                        /*power formula*/
   }
   cout<<"power is: "<<pow;
 return 0;
  }

Output

C++ Power of a Number Result

Explanation:

First of all, the compiler goes to header files and understand the basic files and then onward to the main function.

1. Execution starts with the main function.

2. Declare the variables
exponent=> to store exponential value
base=> to store base value
pow => to store final result

3. Take input power and base from user
cin >> base;
cin >> exponent;

4. Now calculate the power of a number
pow=pow*base;
Loop continues till that time when the value of I becomes 1 and the result stores in result=pow

Related Articles

 

Last modified: March 10, 2019

Comments

Write a Reply or Comment

Your email address will not be published.