numeric_limits::min_exponent10
Retorna o expoente inteiro negativo máximo que o tipo de ponto flutuante pode representar como um valor finito quando uma base de dez é gerada à potência.
static const int min_exponent10 = 0;
Valor de retorno
O expoente mínimo de base 10 integral representável pelo tipo.
Comentários
A função de membro é significativa somente para tipos de ponto flutuante.min_exponent10 é o valor FLT_MIN_10_EXP para o tipo float.
Exemplo
// numeric_limits_min_exponent10.cpp
// compile with: /EHsc
#include <iostream>
#include <limits>
using namespace std;
int main( )
{
cout << "The minimum base 10 exponent for type float is: "
<< numeric_limits<float>::min_exponent10
<< endl;
cout << "The minimum base 10 exponent for type double is: "
<< numeric_limits<double>::min_exponent10
<< endl;
cout << "The minimum base 10 exponent for type long double is: "
<< numeric_limits<long double>::min_exponent10
<< endl;
}
Requisitos
Cabeçalho: <limits>
namespace: STD