InterviewSolution
Saved Bookmarks
| 1. |
Write a program in qbasic to check buzz number or not. |
|
Answer» tion: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 |
|