原出错代码:#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);
原文地址:https://www.cnblogs.com/zyz322/p/12228305.html
时间: 2024-10-14 06:36:12