Divide Two Positive Integers and Round Up August 5, 2019 2:08 pm 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 2): long result = (4 + 3 – 1) / 3; // 2