Facebook
From john, 8 Months ago, written in C++.
Embed
Download Paste or View Raw
Hits: 227
  1. #include<iostream>
  2. #include<math.h>
  3. using namespace std;
  4. int putere(int x, int n)
  5. {
  6.     if(n==0)
  7.     {
  8.         return 1;
  9.     }
  10.     else
  11.     {
  12.         return putere(x,n-1)*x;
  13.     }
  14. }
  15. int main()
  16. {
  17.     int x,n;
  18.     cout<<"n=";
  19.     cin&gt;&gt;n;
  20.  
  21.     cout&lt;&lt;"x=";
  22.     cin>>x;
  23.  
  24.     cout<<putere(x,n);
  25. }