Answers for "round to next 5"

0

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);
	}
}
Posted by: Guest on December-30-2020

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language