(i)
पाठ समय पर न मिलने वाले' के अनुसार समय निर्धारित कर, समय पर न मिलने वालों से क्या कठिनाई होती
है?
Answers
Answered by
2
Explanation:
#include <iostream>
using namespace std;
int main()
{
int exponent;
float base, result = 1;
cout << "Enter base and exponent respectively: ";
cin >> base >> exponent;
cout << base << "^" << exponent << " = ";
while (exponent != 0) {
result *= base;
--exponent;
}
cout << result;
return 0;
}
Similar questions