projecteulerproblem7

53次阅读

共计 356 个字符,预计需要花费 1 分钟才能阅读完成。

problem7

地址:https://projecteuler.net/problem=7。
源码:git@code.aliyun.com:c-program/projecteuler.git。
问题:找到第 10001 个素数。

#include <stdio.h>
#include <math.h>
#include "debug.h"
#include "prime.h"

#define NUM 10001

int main(int argc, char **argv){debugTime();
    initGlobalPrime();
    
    printf("Problem7  Answer: %lld\n", findPrimeByCount(NUM));

    debugTime();
    freeGlobalPrime();
    debugTime();
    return 0;
}

正文完
 0