Please note, this is a STATIC archive of website www.w3resource.com from 19 Jul 2022, cach3.com does not collect or store any user information, there is no "phishing" involved.
w3resource

Java Exercises: Find the number of values in a given range divisible by a given value

Java Basic: Exercise-56 with Solution

Write a Java program to find the number of values in a given range divisible by a given value.
Sample Data:
For example x = 5, y=20 and p =3, find the number of integers within the range x..y and that are divisible by p i.e. { i :x ≤ i ≤ y, i mod p = 0 }

Sample Solution:

Java Code:

import java.util.*;
 public class Exercise56 {
     public static void main(String[] args){
		int x = 5;
		int y = 20;
		int p = 3;
		System.out.println(result(x,y,p));
	 } 		
	public static int result(int x, int y, int p) {	
		if (x%p == 0)
			return( y/p - x/p + 1);
		return(y/p - x/p);
	}
 }

Sample Output:

5

Pictorial Presentation:

Pictorial Presentation: Java exercises: Find the number of values in a given range divisible by a given value.

Flowchart:

Flowchart: Java exercises: Find the number of values in a given range divisible by a given value.

Java Code Editor:

Contribute your code and comments through Disqus.

Previous: Write a Java program to convert seconds to hour, minute and seconds.
Next: Write a Java program to accepts an integer and count the factors of the number.

What is the difficulty level of this exercise?

Test your Programming skills with w3resource's quiz.



Java: Tips of the Day

How to sort an ArrayList?

Collections.sort(testList);
Collections.reverse(testList);

That will do what you want. Remember to import Collections though!

Ref: https://bit.ly/32urdSe