Computer Science, asked by Taani1202, 10 months ago

plz give a program on to check whether the given no is a tech no. Or not...


sswaraj04: which programming language??

Answers

Answered by harsh16603
1

Answer:

I think Google is the best option

Answered by shriharikrishna007
2

Answer:

A number is said to be Buzz Number if it ends with 7 OR is divisible by 7.

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.

Similar questions