Define, input and output int value : Int « Data Type « C++






Define, input and output int value

Define, input and output int value
 

#include <iostream>
using namespace std;

int main()
{
  int b, e, r;
  cout << "Enter base: ";
  cin >> b;
  cout << "Enter exponent: ";
  cin >> e;

  r = 1;
  for( ; e; e--) 
    r = r * b;
  
  cout << "Result: " << r;

  return 0;
}


           
         
  








Related examples in the same category

1.cout: output INT_MIN, INT_MAX and UINTcout: output INT_MIN, INT_MAX and UINT
2.Using cin Object to Read Integer Values from Keyboard
3.addition operator in coutaddition operator in cout
4.Computes the lowest common denominator.Computes the lowest common denominator.
5.Inputting int Values for Multiple VariablesInputting int Values for Multiple Variables
6.Divided by intDivided by int
7.Int value operationsInt value operations
8.convert string (char) to int
9.Integer pointer
10.Using atoi: convert string to int