本帖最后由 HEBEIREN 于 2016-7-17 10:04 编辑
public static void main(String[] args) { int shu = 6;
boolean result=true; //表示是否为素数的结果标识
for (int m = 2; m < shu; m++)
{ if (shu % m == 0)
{
result=false; //只要找到一个能够除尽的数就说明这个数字不是素数,结果标识就为false 。
break;
}
}
if(result)
{
System.out.println(shu+"是素数");
}
else{
System.out.println(shu+"不是素数");
}
}
|