Guest User

Untitled

a guest
Nov 18th, 2018
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.17 KB | None | 0 0
  1. package br.com.ocjp.assignments;
  2.  
  3. public class FloatingPoint {
  4.  
  5. public static void main(String[] args) {
  6. float m = 100.88; // does not compile
  7. float n = 100.88f;
  8. }
  9.  
  10. }
Add Comment
Please, Sign In to add comment