Oh, here are those parts. It is completely based on the code I gave you earlier.
Main module
Call Input module
Call Calculations module
Call Output Module
End Program
Input module
Declare Distance as a positive real number
Declare Length as a positive real number
Write "Enter the distance to the apple"
Input Distance
Write "Enter the length of the worm"
Input Length
Return
Calculations module
While Distance > Length
Set Distance = Distance - Length
Write "The distance to the apple is now ", Distance
End While
Return
Output module
Write "The worm has entered the apple"
Return
Is this what you were looking for? Different classes have different pseudocode module styles.
Let me know if you have any questions,
Scott
__________________
If you like my answer, please press the Accept button and give positive feedback (and I will give you positive feedback). Bonuses are appreciated. If you need more information, just ask!

