今天小编来分享一波C++ cmath数学常用库中的常用代码
首先,这些所有的代码都来自cmath库,所以必须先引用cmath头文件,即:
#include<cmath>
1.绝对值函数abs
abs绝对值函数用于求一个数的绝对值,一个数的绝对值只这个数在数轴上到原点0的距离
其格式为:
cout<<abs(a)<<endl;//输出a的绝对值
也就是求括号中的数的绝对值
例:
#include<iostream>
#include<cmath>
using namespace std;
int main(){
int a = -69;
cout<<abs(a)<<endl;
return 0;
}
输出结果:69
2.向下取整函数floor
floor向下取整函数用于对一个数进行向下取整(求不大于这个数的最大整数)
其格式为:
cout<<floor(b)<<endl;//对b进行向下取整(求不大于实数b的最大整数)
也就是对括号中数进行向下取整
例:
#include<iostream>
#include<cmath>
using namespace std;
int main(){
double b = 2.36;
cout<<floor(b)<<endl;
return 0;
}
输出结果:2
3.向上取整函数ceil
ceil向上取整函数用于对一个数进行向上取整(求不小于这个数的最小整数)
其格式为:
cout<<ceil(c)<<endl;//对c进行向上取整(求不小于实数c的最小整数)
也就是对括号中数进行向上取整
例:
#include<iostream>
#include<cmath>
using namespace std;
int main(){
double c = 2.36;
cout<<ceil(c)<<endl;
return 0;
}
输出结果:3
4.指数函数pow
pow指数函数用于求一个数的另一个数次方
其格式为:
cout<<pow(d,e)<<endl;//计算d的e次方,结果为双精度实数(double)
例:
#include<iostream>
#include<cmath>
using namespace std;
int main(){
double e = 2;
double d = 3
cout<<pow(d,e)<<endl;
return 0;
}
输出结果:9.00
5.平方根值函数sqrt
sqtr平方根值函数用于求一个数的平方根
其格式为:
cout<<sqrt(f)<<endl;//求实数f的平方根
例:
#include<iostream>
#include<cmath>
using namespace std;
int main(){
double f = 9;
cout<<sqrt(f)<<endl;
return 0;
}
输出结果:3
6.自然对数函数log
log自然对数函数用于求一个数的自然数对数(即求一个数等于10的几次方)
其格式为:
cout<<log(g)<<endl;//求实数g的自然数对数(即求g等于10的几次方)
例:
#include<iostream>
#include<cmath>
using namespace std;
int main(){
int g = 1;
cout<<log(g)<<endl;
return 0;
}
输出结果:0
7.自然指数函数exp
exp自然指数函数用于求实数h的自然指数e的h次方
其格式为:
cout<<exp(h)<<endl;//求实数h的自然指数e的h次方
例:
#include<iostream>
#include<cmath>
using namespace std;
int main(){
int h = 1;
cout<<exp(h)<<endl;
return 0;
}
输出结果:2.71828
汇总一下:
cout<<abs(a)<<endl;//输出a的绝对值
cout<<floor(b)<<endl;//对b进行向下取整(求不大于实数b的最大整数)
cout<<ceil(c)<<endl;// 对b进行向上取整(求不小于实数c的最小整数)
cout<<pow(d,e)<<endl;//计算d的e次方,结果为双精度实数
cout<<sqrt(f)<<endl;//求实数f的平方根
cout<<log(g)<<endl;//求实数g的自然数对数(即求g等于10的几次方)
cout<<exp(h)<<endl;//求实数h的自然指数e的h次方
这就是本次的分享了