Create a pseudo code that does the same thing as the following program segment but uses a post-test loop instead of a pre-test loop. You can use either a Repeat . . . Until or a Do . . . While...


Create a pseudo code that does the same thing as the following program segment but uses a post-test loop instead of a pre-test loop. You can use either a Repeat . . . Until or a Do . . . While structure.


Declare W As Integer


Declare Count As Integer


Set Count = 1


Set W = 2


While Count


Write Count * W


Set Count = Count + 1


End While




May 19, 2022
SOLUTION.PDF

Get Answer To This Question

Submit New Assignment

Copy and Paste Your Assignment Here