Viết chương trình tính lũy thừa của một số bất kỳ

Các bước thực hiện:

 1. Nhập vào 2 số bất kỳ là base và ex (số mũ)

2. Tính lũy thừa theo công thức: base ^ ex

3. Hiển thị kết quả

Code tham khảo:

int main()
{
double base, expo, power;
//1. Input 2 numbers
printf("Enter base: ");
scanf("%lf", &base);

printf("Enter exponent: ");
scanf("%lf", &expo);

//2. Calculates base^expo
power = pow(base, expo);

//3. Display the result
printf("%.2lf ^ %.2lf = %.2lf", base, expo, power);

return 0;
}