Hi!
Here is a simple class:
public class Test {
public static void main( String[] args ) {
float f = Float.parseFloat( "1234567890" );
System.out.println( "f = " + f );
}
}
When I run this, I get the following:
f = 1.23456794E9
Why do I get this, intstead of 1.2345679E9?
regards,
Dave