标签: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