Programming Examples

Java program to check whether input number is buzz number or not using ternary operator


Write a Program to input any integer number form user and check whether input number is Buzz Number or not using Ternary Operator.

A "buzz number" is a number that is either divisible by 7 or ends with the digit 7. 

Solution

import java.util.Scanner;
public class BuzzNumberCheck 
{
    public static void main(String args[]) 
	{
        Scanner sc = new Scanner(System.in);
        System.out.print("Enter a number: ");
        int number = sc.nextInt();
        String result = (number % 7 == 0 || number % 10 == 7) ? "Buzz Number" : "Not a Buzz Number";
        System.out.println("The number " + number + " is " + result + ".");
    }
}
Output

Online Exam Quiz for One day Exam Online Typing Test CCC Online Test 2026 Best Computer Training Institute in Prayagraj (Allahabad) Best Java Training Institute in Prayagraj (Allahabad) Best Python Training Institute in Prayagraj (Allahabad) O Level Online Test in Hindi Best Website and Software Company in Allahabad