今天听到一句话说 1 到 n 中质数的个数是 n /ln(n);然后就想怎么用程序算出ln(n)的值。exp(1)是自然底数e。log是以e为底数的。
#include<iostream>
#include<cmath>
usi
2020-02-22