#include
"iostream"
usingnamespacestd;
intmain(){doublea=0.000001;
if(a==1e-6)cout;
}
扩展资料
1、例:如求10的几次方
#include
#include
#include//引入math头文件
usingnamespacestd;
2、10的n次方, n是个变量则要用
#include
#include
void main()
{ int n,m;
#include "iostream"
using namespace std;
int main()
{
double a=0.000001;
if(a==1e-6)
cout<<"True"< } 结果: 所以,C++中10的负6次方可以表示为 :1e-6 (e后面的是方次,表示1乘以10的-6次方)
C语言中10的幂指数用e表示,1的-6次方就是: 1e-6
而指数e可以用exp( )函数表示。
float val;
val=pow(0.1,6);
10e-6这是实型表达