Design a class called Number, write a program using function as follows:
1. Accept a number from the user and check Buzz number or not
. 2. Accept a number from the user and check Composite number or not. Display the menu to display the menu as per the users choice
who will say me this answer correctly i will mark them as brainliest
Answers
Answer:
hi good morning have a good day
Answer:
A number is said to be Buzz Number if it ends with 7 OR is divisible by 7.
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.
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:
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:
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
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 : 63Output : Buzz Number
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 : 63Output : Buzz NumberExplanation: 63 is divisible by 7, one
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 : 63Output : Buzz NumberExplanation: 63 is divisible by 7, oneof the condition is satisfied.
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 : 63Output : Buzz NumberExplanation: 63 is divisible by 7, oneof the condition is satisfied.Input : 72
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 : 63Output : Buzz NumberExplanation: 63 is divisible by 7, oneof the condition is satisfied.Input : 72Output : Not a Buzz Number
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 : 63Output : Buzz NumberExplanation: 63 is divisible by 7, oneof the condition is satisfied.Input : 72Output : Not a Buzz NumberExplanation: 72 % 7 != 0, 72 is neither
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 : 63Output : Buzz NumberExplanation: 63 is divisible by 7, oneof the condition is satisfied.Input : 72Output : Not a Buzz NumberExplanation: 72 % 7 != 0, 72 is neither divisible by 7 nor it ends with 7 so
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 : 63Output : Buzz NumberExplanation: 63 is divisible by 7, oneof the condition is satisfied.Input : 72Output : Not a Buzz NumberExplanation: 72 % 7 != 0, 72 is neither divisible by 7 nor it ends with 7 so it is not a Buzz Number.