Draw a flowchart to input a natural number, such as 997, and determine whether or not it is a multiple of 3.

The flowchart in the C programming language - javatpoint

Start

|

Input a natural number

|

If the number is divisible by 3 without remainder, go to Yes

|

If the number is not divisible by 3 without remainder, go to No

|

Yes: Display “The number is a multiple of 3.”

|

No: Display “The number is not a multiple of 3.”

|

Stop

Leave a Comment