求素数,没有公式,只能自己编写过程.例:判断x是不是素数.for i=2 to x
if x%i=0 then
break
end if
next
if x=i then
printf x "not 素数"
else
print x "is 素数"
end if
求素数,没有公式,只能自己编写过程.例:判断x是不是素数.for i=2 to x
if x%i=0 then
break
end if
next
if x=i then
printf x "not 素数"
else
print x "is 素数"
end if