用程序表示log,ln函数


今天听到一句话说 1 到 n 中质数的个数是 n /ln(n);
然后就想怎么用程序算出ln(n)的值。
exp(1)是自然底数e。log是以e为底数的。

#include<iostream>
#include<cmath>
using namespace std;
int main()
{
    cout<<log2(4)<<endl;
    cout<<log(exp(1))<<endl;
    cout<<log10(100)<<endl;
    return 0;
 } 


Author: 眼里有星星
Reprint policy: All articles in this blog are used except for special statements CC BY 4.0 reprint polocy. If reproduced, please indicate source 眼里有星星 !
 Previous
堆排序 堆排序
题目输入一个长度为n的整数数列,从小到大输出前m小的数。输入格式第一行包含整数n和m。第二行包含n个整数,表示整数数列。输出格式共一行,包含m个整数,表示整数数列中前m小的数。数据范围1≤m≤n≤10 ^ 5,1≤数列中元素≤10 ^ 9输
2020-02-22
Next 
Hello World Hello World
Welcome to Hexo! This is your very first post. Check documentation for more info. If you get any problems when using Hex
2020-02-17 眼里有星星
  TOC