What is Pseudocode
What is Pseudocode
1. Start and End – Always begin with Start and finish with End.
4. Control Structures:
Pseudocode:
Start
Input Length
Input Width
Display Area
End
Pseudocode:
Start
Input Number
Display "Positive"
Else
Display "Negative"
End If
End
Pseudocode:
Start
For Counter = 1 to 5
Display Counter
End For
End