create a program in python to check if a number is a buzz number or not . ( buzz number is a number that ends with 7 or divisible by 7 )
Answers
Answered by
2
Answer:
custom
Explanation:
the order is superb quality achi he was coming in 4 Street suite for your time and consideration and look forward for your support
Answered by
1
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