Code implementation of exponentiation operation in C language
In C language, it is not difficult to implement exponentiation operation (that is, finding the power of a number). There are usually two ways to implement exponentiation operations, namely loop calculation and recursive calculation. The code implementation of these two methods will be introduced below.
Method 1: Loop calculation
Loop calculation of powers can be achieved by repeatedly multiplying the base. The specific steps are as follows:
double power(double x, int n);
The following is a code example for looping to calculate powers:
#include <stdio.h> double power(double x, int n) { double result = 1.0; if (n > 0) { for (int i = 0; i < n; i++) { result *= x; } } else if (n < 0) { for (int i = 0; i < -n; i++) { result *= 1 / x; } } return result; } int main() { double x = 2.0; int n = 3; double result = power(x, n); printf("%.2f的%d次幂为%.2f ", x, n, result); return 0; }
In the above code, we define a power function to calculate powers, and then call the power function in the main function carry out testing. The running result will output 2.00 raised to the third power as 8.00.
Method 2: Recursive calculation
The idea of recursively calculating exponentiation is to reduce the exponent n again and again and call the exponentiation function recursively. The specific steps are as follows:
double power(double x, int n);
The following is a code example for recursively calculating powers:
#include <stdio.h> double power(double x, int n) { if (n > 0) { return x * power(x, n-1); } else if (n < 0) { return 1 / (x * power(x, -n-1)); } else { return 1; } } int main() { double x = 2.0; int n = 3; double result = power(x, n); printf("%.2f的%d次幂为%.2f ", x, n, result); return 0; }
Also in the above code, we define a power function to calculate powers, and then call power in the main function function to test. The running result will output 2.00 raised to the third power as 8.00.
To sum up, through two methods of loop calculation and recursive calculation, we can implement C language exponentiation operation. Which method to use depends on actual needs and personal preference.
The above is the detailed content of Implement exponentiation operation in C language. For more information, please follow other related articles on the PHP Chinese website!