fork download
  1. class Round
  2. {
  3. public static void main (String[] args) throws java.lang.Exception
  4. {
  5. double x = 1.75;
  6. long y = Math.round(x);
  7. System.out.println( y );
  8.  
  9. x = -1.75;
  10. y = Math.round(x);
  11. System.out.println( y );
  12.  
  13. x = 1.5;
  14. y = Math.round(x);
  15. System.out.println( y );
  16.  
  17. x = -1.5;
  18. y = Math.round(x);
  19. System.out.println( y );
  20. }
  21. }
Success #stdin #stdout 0.11s 320512KB
stdin
Standard input is empty
stdout
2
-2
2
-1