C语言判断双子素数

日期:2021-09-06 23:00:21 人气:1

C语言判断双子素数

#include <iostream>
#include "math.h"
using namespace std;
int sushu(int n)
{
int i;
for (i=2;i<=sqrt(n);++i)
if (n%i==0)
return 0;
return 1;
}
int main()
{
int
    A+
热门评论