我无法找到如何更改8.85 x 10 ^ -12 -----> pow(base,exponent)
这是我的代码:
#include <math.h>
float Value = 8.85 * pow(10,-12);
void setup()
{
Serial.begin(9600);
}
void loop()
{
Serial.println(Value);
}
我的输出:
0.00
答案 0 :(得分:3)
使用%e
格式
printf(“Value %e”, Value)
%e
浮点数或双指数格式
答案 1 :(得分:1)
#include <math.h>
float Value = 8.85 * pow(10,-12);
void setup()
{
Serial.begin(9600);
}
void loop()
{
Serial.println(Value,19);
}