Exercise 2 Write a program that works out whether if a given year is a leap year. A normal year has 365 days, leap years have 366, with an extra day in February. The reason why we have leap years is...


in python


Exercise 2<br>Write a program that works out whether if a given year is a leap year. A normal year has 365 days, leap<br>years have 366, with an extra day in February. The reason why we have leap years is really fascinating,<br>this video does it more justice:<br>https://www.youtube.com/watch?v=xX96xng7sAE<br>This is how you work out whether if a particular year is a leap year.<br>on every year that is evenly divisible by 4 **except** every year that is evenly divisible by 100<br>**unless** the year is also evenly divisible by 400<br>e.g.<br>The<br>year<br>2000:<br>2000 ÷ 4 = 500 (Leap)<br>2000 ÷ 100 = 20 (Not Leap)<br>2000 ÷ 400 = 5 (Leap!)<br>So the<br>year 2000 is a leap year.<br>But the year 2100 is not a leap year because:<br>2100 ÷ 4 = 525 (Leap)<br>2100 ÷ 100 = 21 (Not Leap)<br>2100 ÷ 400 = 5.25 (Not Leap)<br>Example Input 1<br>2400<br>Example Output 1<br>Leap year.<br>Example Input 2<br>1989<br>Example Output 2<br>Not leap year.<br>

Extracted text: Exercise 2 Write a program that works out whether if a given year is a leap year. A normal year has 365 days, leap years have 366, with an extra day in February. The reason why we have leap years is really fascinating, this video does it more justice: https://www.youtube.com/watch?v=xX96xng7sAE This is how you work out whether if a particular year is a leap year. on every year that is evenly divisible by 4 **except** every year that is evenly divisible by 100 **unless** the year is also evenly divisible by 400 e.g. The year 2000: 2000 ÷ 4 = 500 (Leap) 2000 ÷ 100 = 20 (Not Leap) 2000 ÷ 400 = 5 (Leap!) So the year 2000 is a leap year. But the year 2100 is not a leap year because: 2100 ÷ 4 = 525 (Leap) 2100 ÷ 100 = 21 (Not Leap) 2100 ÷ 400 = 5.25 (Not Leap) Example Input 1 2400 Example Output 1 Leap year. Example Input 2 1989 Example Output 2 Not leap year.

Jun 06, 2022
SOLUTION.PDF

Get Answer To This Question

Related Questions & Answers

More Questions »

Submit New Assignment

Copy and Paste Your Assignment Here