I have run into a very strange problem in my code. I have a simple temperature converter where the user enters the temperature in Celsius and, after pressing \"Convert\", th
Java interprets numbers like 123f as referring to a float and 123d as a double, whereas plain 123 means an int.
123f
float
123d
double
123
int