Skip to content

Instantly share code, notes, and snippets.

@cdduarte
Created June 5, 2014 21:07
Show Gist options
  • Save cdduarte/03fa7b8940b34ad2bea8 to your computer and use it in GitHub Desktop.
Save cdduarte/03fa7b8940b34ad2bea8 to your computer and use it in GitHub Desktop.
import java.util.Scanner; // allows use of Scanner class in java.util package
public class TestDBL
{
public static void main( String[] args )
{
Scanner sysIn = new Scanner(System.in);
double x;
System.out.print( "Enter an floating point number: " );
x = sysIn.nextDouble();
System.out.printf( "%.16f\n", x );
sysIn.close();
return;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment