Computer Science, asked by shalini5236, 9 months ago

WRITE A PROGRAM TO PRINT THE BUZZ NUMBER

Answers

Answered by Anonymous
1

Explanation:

The task is to check whether the given number is buzz number or not. Examples: Input : 63 Output : Buzz Number Explanation: 63 is divisible by 7, one of the condition is satisfied. Input : 72 Output : Not a Buzz Number Explanation: 72 % 7 != 0, 72 is neither divisible by 7 nor it ends with 7 so it is not a Buzz Number.p

Answered by Brenquoler
16

import java. util. *

class Buzz

{

public static void main (string args[])

{

Scanner sc= new Scanner (System. in);

int x;

System.out.println ("Enter a number");

x=sc. nextInt ();

if(x%==0||x/10==7)

System.out.println (x+"is Buzz number");

else

System.out.println (x+"is not Buzz");

}

}

Similar questions