c语言编程找出10000以内的可逆素数对。例如:13-31;17-71;37-73.

日期:2021-07-25 23:06:49 人气:1

c语言编程找出10000以内的可逆素数对。例如:13-31;17-71;37-73.

#include <stdio.h>
#include <math.h>
bool isPrime(int n)
{
    int j;
    j=(int)sqrt(n);
    for(int&nbs
    A+
热门评论