KnowledgeBoat Logo

Java Number Programs (ICSE Classes 9 / 10)

Write a program to display all the 'Buzz Numbers' between p and q (where p<q). A 'Buzz Number' is the number which ends with 7 or is divisible by 7.

Java

Java Iterative Stmts

ICSE

132 Likes

Answer

import java.util.Scanner;

public class KboatBuzzNumber
{
    public static void main(String args[]) {
        Scanner in = new Scanner(System.in);
        System.out.print("Enter p: ");
        int p = in.nextInt();
        System.out.print("Enter q: ");
        int q = in.nextInt();
        if (p < q) {
            System.out.println("Buzz Numbers between " 
                + p + " and " + q);
            for (int i = p; i <= q; i++) {
                if (i % 10 == 7 || i % 7 == 0)
                    System.out.println(i);
            }
        }
        else {
            System.out.println("Invalid Inputs!!!");
            System.out.println("p should be less than q");
        }

    }
}

Output

BlueJ output of Write a program to display all the 'Buzz Numbers' between p and q (where p q). A 'Buzz Number' is the number which ends with 7 or is divisible by 7.

Answered By

55 Likes