9

Float

  1. #include <iostream>
  2.  
  3. #include <float.h>
  4.  
  5. int main() {
  6.     using namespace std;
  7.  
  8.     const int NBITS = 8;    // bits in a byte
  9.  
  10.     int fbits = sizeof (float) * NBITS; // bits in a float
  11.  
  12.     cout << "\n A float takes:\t" << fbits << " bits:\n\t\t";
  13.     cout << FLT_MANT_DIG - 1 << " bits for the mantissa\n\t\t ";
  14.     cout << fbits - FLT_MANT_DIG << " bits for the exponent\n\t\t ";
  15.     cout << 1 << " bit for the sign\n";
  16.     cout << " with " << FLT_DIG << " significant digits\n";
  17.     cout << " min value is " << FLT_MIN << endl;
  18.     cout << " max value is " << FLT_MAX << endl;
  19. }

Comments

Your comment:
[p] [b] [i] [u] [s] [quote] [pre] [br] [code] [url] [email] strip help 2000

Enter a maximum of 2000 characters.
Improve the presentation of your text with the following formatting tags:
[p]paragraph[/p], [b]bold[/b], [i]italics[/i], [u]underline[/u], [s]strike[/s], [quote]citation[/quote], [pre]as is[/pre], [br]line break,
[url]http://www.izend.org[/url], [url=http://www.izend.org]site[/url], [email]izend@izend.org[/email], [email=izend@izend.org]izend[/email],
[code]command[/code], [code=language]source code in c, java, php, html, javascript, xml, css, sql, bash, dos, make, etc.[/code].