formatting a floating point numbers
how a float value can be displayed to the user without the exponent i.e.,'E'. for example if the user enters '123456763' , the in the output (system.out.print) of the number is shown as '1.2345676E8 ' but the desired output should be the same number '123456763'. is there any way through which the user can obtain the same value?

