fork download
  1. class Program {
  2. public static void main (String[] args) {
  3. System.out.println(Math.round(0.2f));
  4. System.out.println(Math.round(0.5f));
  5. System.out.println(Math.round(0.8f));
  6. System.out.println(Math.round(1.2f));
  7. System.out.println(Math.round(1.5f));
  8. System.out.println(Math.round(1.8f));
  9. System.out.println(Math.round(-0.2f));
  10. System.out.println(Math.round(-0.5f));
  11. System.out.println(Math.round(-0.8f));
  12. System.out.println(Math.round(-1.2f));
  13. System.out.println(Math.round(-1.5f));
  14. System.out.println(Math.round(-1.8f));
  15. }
  16. }
  17.  
  18. //https://pt.stackoverflow.com/q/579752/101
Success #stdin #stdout 0.08s 48996KB
stdin
Standard input is empty
stdout
0
1
1
1
2
2
0
0
-1
-1
-1
-2