Question: Below you will see pseudocode, please debug the code (find the errors) . // This program is supposed to display every fifth year // starting
Below you will see pseudocode, please debug the code (find the errors) .
// This program is supposed to display every fifth year // starting with 2015; that is, 2015, 2020, 2025, // and so on, for 30 years. start Declarations num year num START_YEAR = 2000 num FACTOR = 4 num END_YEAR = START_YEAR + 30 year = STAR_YEAR while year < END_YEAR output year year = START_YEAR endwhile stop
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
