Bootstrap

【C语言】pow函数实现/递归求幂

#define _CRT_SECURE_NO_WARNINGS 1;
#include<stdio.h>
int power(double x, double y)
{
   
	int i = 1
;