w3resource

Java: Print numbers between 1 to 100 which are divisible by 3, 5 and by both


Divisible by 3, 5, Both

Write a Java program to print numbers between 1 and 100 divisible by 3, 5 and both.

Pictorial Presentation:

Java Basic Exercises: Print numbers between 1 to 100 which are divisible by 3, 5 and by both


Sample Solution:

Java Code:

public class Exercise50 {
    public static void main(String args[]) {
        // Print numbers divided by 3
        System.out.println("\nDivided by 3: ");
        for (int i = 1; i < 100; i++) {
            if (i % 3 == 0)
                System.out.print(i + ", ");
        }

        // Print numbers divided by 5
        System.out.println("\n\nDivided by 5: ");
        for (int i = 1; i < 100; i++) {
            if (i % 5 == 0)
                System.out.print(i + ", ");
        }

        // Print numbers divided by both 3 and 5
        System.out.println("\n\nDivided by 3 & 5: ");
        for (int i = 1; i < 100; i++) {
            if (i % 3 == 0 && i % 5 == 0)
                System.out.print(i + ", ");
        }
        System.out.println("\n");
    }
}

Sample Output:

Divided by 3:                                                          
3, 6, 9, 12, 15, 18, 21, 24, 27, 30, 33, 36, 39, 42, 45, 48, 51, 54, 57
, 60, 63, 66, 69, 72, 75, 78, 81, 84, 87, 90, 93, 96, 99,              
                                                                       
Divided by 5:                                                          
5, 10, 15, 20, 25, 30, 35, 40, 45, 50, 55, 60, 65, 70, 75, 80, 85, 90, 
95,                                                                    
                                                                       
Divided by 3 & 5:                                                      
15, 30, 45, 60, 75, 90,

Flowchart:

Flowchart: Java exercises: Print numbers between 1 to 100 which are divisible by 3, 5 and by both


For more Practice: Solve these Related Problems:

  • Modify the program to check divisibility by 7.
  • Print numbers divisible by both 2 and 3.
  • Write a program to count how many numbers are divisible by a given number.
  • Find and display numbers divisible by 11.

Go to:


PREV : Check Even or Odd.
NEXT : String to Integer Conversion.


Java Code Editor:

Contribute your code and comments through Disqus.

What is the difficulty level of this exercise?

Test your Programming skills with w3resource's quiz.



Follow us on Facebook and Twitter for latest update.