I have a dynamically changing input reading from a file. The numbers are either Int or Double. Why does Scala prints .0 after every Double numbers? Is there a way for Scala to print it the same way it reads it
Example:
var x:Double = 1
println (x) // This prints '1.0', I want it to print '1'
x = 1.0 // This prints '1.0', which is good
I can't use Int because some of the input I get are Doubles. I can't use String or AnyVal because I perform some math operations.
Thank you,