+ 1
Can someone explain me double? I dont understand it
Can someone explain me double? I dont understand it how to use double in c++
4 Respostas
+ 2
double (as I know it) means a intreger that can be like 3.304 and have numbers after a dot (very usefull in challenges where you have to look at the decimals
+ 4
It stores decimal numbers more precise than a float
+ 1
it takes decimal numbers.
such as
double x = 4.45
😉
0
we can use float instead of double even float stores decimal values?