Ok I got a couple values here:
'F', 0xf, 070, 70L, 77e-1f, 7.7f, 7.77e1, 77.7
I know that 'F'
is a char
and that 70L
has the type long
. Also, I know that 0xf
is hex(right?) and that 070
is octal. But what are those other numbers? And why the hell is 77.7
double
and not float
as well?