draw a flowchart to accept a number of the user and check whether that divided by 5 or not
Answers
Answered by
0
Flowchart always starts with start word
First Step: Take input from the user.
Second Step: Check whether the input is divisible by 5
if Yes, Display the result as Number is divisible by 5
if No, Display the result as Number is not divisible by 5
and, end with Stop.
Attachments:
Answered by
0
The flowchart to check whether the number is divisible by 5 or not is given below.
Explanation:
Firstly, the user will enter a number, then check the condition:
if num%5==0
The output is, "Number is divisible."
otherwise
The output will be, "Number is not divisible by 5."
Attachments:
Similar questions