nm
This commit is contained in:
parent
3f743a0312
commit
92cd2cd6e7
BIN
du3/program
BIN
du3/program
Binary file not shown.
@ -33,13 +33,15 @@ int datevalid(int d, int m, int y) {
|
|||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
if(m == 2) {
|
if (m == 2) {
|
||||||
if(isleap(y)) {
|
if (isleap(y)) {
|
||||||
if(d <= 29) {
|
if (d > 29) {
|
||||||
return 1;
|
return 0;
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
return 0;
|
if (d > 28) {
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user