在c++中 幂函数怎么表示给个例子 谢谢
2个回答
展开全部
2的 3次
/* visual c++ 6.0 */
#include <cmath>
#include <iostream>
using namespace std;
int main()
{
int x = 2;
int y = 3;
cout << "2*2*2 = " << pow(x,y) << endl;
return 0;
}
/* visual c++ 6.0 */
#include <cmath>
#include <iostream>
using namespace std;
int main()
{
int x = 2;
int y = 3;
cout << "2*2*2 = " << pow(x,y) << endl;
return 0;
}
追问
我是在vs2008运行 编译说报错“ 对重载函数的调用不明确 ”应该怎样改?
追答
pow( (double)x, double(y) )
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询