Respuesta :
Flowcharts are used to model an actual computer program.
How to create the flowchart?
To create the flowchart, we make use of shapes such as:
- Oval for start and stop
- Parallelogram for input and output
- Rectangle for processing
- Kite for making decision
The flowchart of the program
We start by creating the algorithm of the program.
This is done as follows:
- Start
- Input Num
- If Num == 1, print "1st"
- Else If Num == 2, print "2nd"
- Else If Num == 3, print "3rd"
- End
Next, we create the flowchart based on the above algorithm
See attachment for the flowchart
Read more about flowchart at:
https://brainly.com/question/16902516
#SPJ9