Write a’ program to ask the user to enter one integer number, and then implement the following logic: If the number is greater than 99, display the message “Big number”, otherwise, if the number is greater than 49, display the message “Medium number”, otherwise, if the number is greater than or equal to 0, display the message “Small number”, otherwise, display the message “Negative number”.
Write a’ program to ask the user to enter one integer number, and then implement the following logic:
If the number is greater than 99, display the message “Big number”, otherwise, if the number is greater than 49, display the message “Medium number”, otherwise, if the number is greater than or equal to 0, display the message “Small number”, otherwise, display the message “Negative number”.