Napisz program sprawdzający działanie funkcji rekurencyjnej obliczający naturalną potęgę liczby całkowitej.
#include <iostream>#include <cstdio>#include <cstdlib>#include <ctime>using namespace std;int x,y;int potega(int a, int b){ if(b==0)return 1; return potega(a,b-1)*a;}int main(){ cout<<"Podaj liczbe i jej potege\n"; cin>>x>>y; cout<<x<<" do potegi "<<y<<" wynosi "<<potega(x,y); cin.ignore(2); return 0; }
" Life is not a problem to be solved but a reality to be experienced! "
© Copyright 2013 - 2024 KUDO.TIPS - All rights reserved.
#include <iostream>
#include <cstdio>
#include <cstdlib>
#include <ctime>
using namespace std;
int x,y;
int potega(int a, int b)
{
if(b==0)return 1;
return potega(a,b-1)*a;
}
int main()
{
cout<<"Podaj liczbe i jej potege\n";
cin>>x>>y;
cout<<x<<" do potegi "<<y<<" wynosi "<<potega(x,y);
cin.ignore(2);
return 0;
}