Create a flowchart that asks the user to enter a number. (Assume this number is integer!) If the number is multiple of 5 then show a message that says “HiFive”. If the number is multiple of 3 then show a message that says “HiThree”. If the number is multiple of 2 then show a message that says “HiTwo”. Then end the Flowchart. (Tip: Use the % symbol for modulus operation) (Tip2: If the number is not a multiple of 5, 3 or 2 just end the program)
Explanation:
Here is the flowchart which first asks for the number from the user and save it as variable n.
Then it checks if the number is a multiple of 5 and print "HiFive" if it is.
Then it checks if the number is a multiple of 3 and print "HiThree" if it is.
Then it checks if the number is a multiple of 2 and print "HiTwo" if it is.
Flowchart:
PLEASE UPVOTE IF YOU FOUND THIS HELPFUL!
Get Answers For Free
Most questions answered within 1 hours.