0
I’m creating variables, and when I compile, the number comes out "glued" to the letter. I don’t know how to explain it well, but that’s about it.
See my code below:
int numero = 24;
System.out.println("Eu gosto muito de" + numero);
The result is:
Eu gosto muito de24
Note that the 24
is next to the "de"
, and I wanted them to be apart, but I don’t know how to fix it.
This also happens with numbers.