Difference between revisions of "Double"

esse quam videri
Jump to: navigation, search
(Explanation)
(Explanation)
Line 6: Line 6:
  
 
=Explanation=
 
=Explanation=
Doubles can be used for arithmetic expressions such as addition, multiplication, division in programming.
+
Doubles can be used for arithmetic expressions such as addition, multiplication, division in programming. It is functionally similar to a float data type, however, it can hold twice as much data. This means that the numbers used in a double can be twice as large as that of a float.  
  
  

Revision as of 14:54, 22 July 2019

Definition

A double is a data type. It is a floating-point number that has 64 bits of space.

Relevance

Doubles are commonly used for large numbers in programming. Being floating-point numbers, doubles can hold decimal precision.

Explanation

Doubles can be used for arithmetic expressions such as addition, multiplication, division in programming. It is functionally similar to a float data type, however, it can hold twice as much data. This means that the numbers used in a double can be twice as large as that of a float.


double a = 5; 
double b = 2.5;
double result1, result2, result3; // You can also declare several variables of the same type this way.

result1 = a + b; // result1 = 7.5
result2 = a * b; // result2 = 12.5
result3 = a / b; // result3 = 2;

Resources

See also

Notes

External Links