Answer:
See explaination
Step-by-step explanation:
An algorithm is the step by step process of solving any particular problem. After an algorithm is developed, solving any problem becomes easier.
Below is an algorithm that prints the leap years from the years 2020 to 2073.
ALGORITHM:
step 1: assign i with 2020
step 2: if i is 2074 then end else continue
step 3: if i % 4 is 0 then print i else continue
step 4: compute and assign i = i +1
step 5: goto step 2
Please kindly check attachment for the associated Flow chart.