【求助】sqrt的用法
#include "iostream"#include "cmath"
using namespace std;
int main()
{
int N,M;
cin>>N;
while(N--)
{
cin>>M;
double sqrt(double);
double a,b,c,d;
a=sqrt(5.0);
b=pow((1+a)/2,M);
c=pow((1-a)/2,M);
d=(1/a)*(b-c);
cout<<d<<endl;
}
return 0;
}
853634_0_0_4141.cpp
853634_0_0_4141.cpp(11) : error C2883: “sqrt” : 函数声明与 using 声明引入的“sqrt”冲突
\include\math.h(200) : 参见“sqrt”的声明
为什么会出现这种错误??