Java

How to Calculate Remainder in Java (%)1 min read

You might want to calculate the remainder from an integer division, not throw it away. For that, Java provides a special operator, modulus (%), to retrieve the remainder.

Example:

 

Leave a Comment