早教吧 育儿知识 作业答案 考试题库 百科 知识分享

++编写一个求X的n次方的函数

题目详情
++ 编写一个求X的n次方的函数
▼优质解答
答案和解析
一个用for循环,一个用while循环
运行过,一切正常~
#include
using namespace std;
void __for(int x,int n)
{
double result = 1.0;
for(int i = 0; i < n; i++)
result *= x;
cout