Skip to content

Instantly share code, notes, and snippets.

@dariogabriel113
Last active June 30, 2018 03:39
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dariogabriel113/99e5b63f4251dfb94142bdcff0ffd6b6 to your computer and use it in GitHub Desktop.
Save dariogabriel113/99e5b63f4251dfb94142bdcff0ffd6b6 to your computer and use it in GitHub Desktop.
public class TestFloatingPoint{
public static void main(String[] args){
double salary = 1250.70;
System.out.println("My salary is " + salary);
double division = 5.0 / 2;
System.out.println("division: " + division);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment