how to round of to the next multiple of 5 code example
Example: round to the next multiple of 5
public class Main
{
public static void main(String[] args) {
int num = 5;
int nextMultipleOfFive = (num/5+1)*5;
System.out.println(nextMultipleOfFive);
}
}