Divide Two Positive Integers and Round Up August 5, 2019 In Java, we can divide two positive integers and round up as follows: int result = (x + y – 1) / y Example: (4/3 = 1.33 and we want