码迷,mamicode.com
首页 > 其他好文 > 详细

错误 2 error C2668: “sqrt”: 对重载函数的调用不明确

时间:2020-01-22 12:29:31      阅读:103      评论:0      收藏:0      [点我收藏+]

标签:i++   错误   pre   解决   mat   amp   void   class   code   

原出错代码:
#include "stdio.h" #include "math.h" void main() { int i=1,m,k=1; printf("请输入数字:"); scanf("%d",&m); k=sqrt(m); for(;i<k;i++) { if(m%k==0) break; } if(i>k) { printf("是素数"); } else { printf("不是素数"); } }

解决方法

 k=sqrt((float)m);

错误 2 error C2668: “sqrt”: 对重载函数的调用不明确

标签:i++   错误   pre   解决   mat   amp   void   class   code   

原文地址:https://www.cnblogs.com/zyz322/p/12228305.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!