Buzz Number

You might also like

Download as pdf or txt
Download as pdf or txt
You are on page 1of 1

2/16/23, 12:10 PM g:\...\src\Buzz.

java

import java.util.*;
public class Buzz {
public static void main(String[] args) {
Scanner sc=new Scanner(System.in);
System.out.println("Enter the Number:");
int n=sc.nextInt();
if(n%7==0||n%10==7)
System.out.println("It's a Buzz Number");
else
System.out.println("It's not a Buzz Number");
}
}

localhost:49793/3b759255-114c-4515-9698-7f841ce80ddb/ 1/1

You might also like