VS2012 error C2668: “sqrt”: 对重载函数的调用不明确-已解决

源程序如下:

#include
#include
int main()
{
int n,k,i,m=0;
for(n=101;n<=200;n=n+2)

k=sqrt(n);
for(i=2;i<=k;i++)
if(n%i==0)break;
if(i>=k+1)
{
printf("%d ",n);
m=m+1;
}


if(m%10==0) printf("\n");
}
printf("\n");
return 0;
}

编译时出现错误:error C2668: “sqrt”: 对重载函数的调用不明确

VS2012 error C2668: “sqrt”: 对重载函数的调用不明确-已解决_第1张图片

将第八行改为:

k=sqrt((float)n);

则编译成功。屏幕显示如下:


你可能感兴趣的:(vs2012,c语言,VS2012)