实现 pow 函数

 1 ////实现pow函数
 2 
 3 #include <stdio.h>
 4 #include <stdlib.h>
 5 double power(double,int) ; //函数原型
 6 int main()
 7 
 8 {
 9 
10     printf("%d的%d次幂等于: %.2lf\n",5,2,power(5,2));
11     return 0;
12 }
13 
14 
15 double power(double num1, int num2)  //函数定义
16 {
17     double result = 1;
18 
19     int i;
20 
21     for(i = 0; i < num2;i++)
22     {
23         result = result * num1; //累乘
24     }
25 
26     return result;
27 
28 }

 

posted on 2021-07-28 10:35  Bytezero!  阅读(188)  评论(0编辑  收藏  举报