Difference between revisions of "Floating Point Number"

esse quam videri
Jump to: navigation, search
(Explanation)
Line 14: Line 14:
 
float result1, result2, result3; // You can also declare several variables of the same type this way.
 
float result1, result2, result3; // You can also declare several variables of the same type this way.
  
result1 = a + b; // result1 = 7.5
+
result1 = a + b; // result1 = 7.5f
result2 = a * b; // result2 = 12.5
+
result2 = a * b; // result2 = 12.5f
result3 = a / b; // result3 = 2;
+
result3 = a / b; // result3 = 2f
 
</syntaxhighlight>
 
</syntaxhighlight>
 +
 
=Resources=
 
=Resources=
 
== See also ==
 
== See also ==

Revision as of 20:32, 16 July 2019

Definition

A float (short for floating-point number) is a data type that has 32 bits of space.

Relevance

Floats are commonly used for complex numbers in programming. Being floating-point numbers, floats can hold decimal precision.

Explanation

Floats can be used for arithmetic expressions such as addition, multiplication, division in programming.


float a = 5f; // notice the f after the number, this is necessary to specify that the value is a float.
float b = 2.5f;
float result1, result2, result3; // You can also declare several variables of the same type this way.

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

Resources

See also

Notes

External Links