Изменить 'du3/program.c'

This commit is contained in:
Oleksandr Hryshchenko 2021-03-18 19:07:32 +00:00
parent 1692ae3092
commit 92c995a25b

View File

@ -42,7 +42,7 @@ int main() {
goto LABEL; goto LABEL;
} }
if(date[0] >= 29 && date[1] == 2 && (date[2] % 4 != 0 || (date[2] % 100 == 0 && date[2] % 400 != 0))){ if(date[0] >= 29 && date[1] == 2 && (date[2] % 4 != 0 || (date[2] % 100 == 0 && date[2] % 400 != 0))){
puts("Neplatny datum"); puts("Neplatny datum.");
goto LABEL; goto LABEL;
} }
date[0] += 7; date[0] += 7;