Double

esse quam videri
Revision as of 19:02, 16 July 2019 by Pedro (talk | contribs) (Explanation)
Jump to: navigation, search

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.


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