How to round to nearest int the result of integer division in Java

1 Answer

0 votes
public class MyClass {
    public static void main(String args[]) {
        int a = 247, b = 9;
         
        float result = (float)a / b;
        int result_round_to_nearest = Math.round((float)a / b);
  
        System.out.println(result);
        System.out.println(result_round_to_nearest);
    }
}
 
 
 
 
/*
run:
  
27.444445
27
  
*/

 



answered Aug 18, 2021 by avibootz
edited Aug 18, 2021 by avibootz

Related questions

1 answer 131 views
1 answer 172 views
1 answer 121 views
1 answer 109 views
1 answer 156 views
1 answer 63 views
1 answer 112 views
...