summaryrefslogtreecommitdiff
path: root/python/problems/introduction/leap_year/en.py
diff options
context:
space:
mode:
Diffstat (limited to 'python/problems/introduction/leap_year/en.py')
-rw-r--r--python/problems/introduction/leap_year/en.py15
1 files changed, 15 insertions, 0 deletions
diff --git a/python/problems/introduction/leap_year/en.py b/python/problems/introduction/leap_year/en.py
new file mode 100644
index 0000000..a2419f9
--- /dev/null
+++ b/python/problems/introduction/leap_year/en.py
@@ -0,0 +1,15 @@
+name = '*Leap year'
+
+description = '''\
+<p>Write a program that reads a number representing a year and determines whether
+this is a leap year. A leap year is divisible by 4, but not divisible by 100,
+except if it is divisible also by 400. Thence years 2004, 2008, and 2000 are
+leap years, while 2005 and 2100 are not.</p>'''
+
+hint = {
+ 'plan': '''\
+<p>(translation missing)</p>''',
+
+ 'no_input_call': '''\
+<p>(translation missing)</p>''',
+}