Answer:
Step 1 : Start
Step 2 : Set target= 0
Step 3 : Use a While loop
Step 4 : input donation
Step 5 : Sum - - > target += donation
Step 6 :, check loop condition
Step 7 : End
Step-by-step explanation:
Algorithm is a sequence of written instructions or steps which we want the computer to in other to solve a particular problem :
Counter is set at 0
Total amount is initially set to := 0
Using a while loop ;
While target amout is less than 200 ; user inputs the amout to donate and it is added to target amount. This loop continues until target amount is greater than 200. Then the loop terminates.