| [ Web Proxy ] |
| Viewing: https://raw.githubusercontent.com/sri355/cpp-programming/main/OOP1-Lab7/power.cpp | [Back] [Original] |
#include
#include
using namespace std;
long long int power(long long int x, long long int y)
{
if (y == 0)
return 1;
else
return x * power(x, y - 1);
}
int main1()
{
cout > y; // inpuing the interval of the numbers
cout
| Web Proxy Viewer | New URL | Original Page |