半素数题目定义了一种叫半素数的数:只要一个数能被
23 查阅
参考答案:
解法如下:
\r\n
#include <iostream>
#include <cmath>
using namespace std;
bool isprime(long test)
{
int i;
for(i=2;i<=sqrt((long double)test);i++)
{
if(test%i ==0)
return false;
}
re