You are viewing a single comment's thread. Return to all comments →
Line 6
month[2] = 28 -> month[2] = 29
Line 8
month[2] = 29 -> month[2] = 28
Line 35
x = x * 1000 + y1 -> x = x * 10000 + y1
Line 36
if x % 4 == 0 and x % 7 == 0: -> if x % 4 == 0 or x % 7 == 0:
Line 47
m1 = m1 + 1 -> m1 = 1
Seems like cookies are disabled on this browser, please enable them to open this website
Prime Dates
You are viewing a single comment's thread. Return to all comments →
Line 6
month[2] = 28 -> month[2] = 29
Line 8
month[2] = 29 -> month[2] = 28
Line 35
x = x * 1000 + y1 -> x = x * 10000 + y1
Line 36
if x % 4 == 0 and x % 7 == 0: -> if x % 4 == 0 or x % 7 == 0:
Line 47
m1 = m1 + 1 -> m1 = 1