Cześć
w jednej z częsci kodu wyskakuje mi taki błąd: 'the declaration of 'int rok' shadows a parameter'. Nie wiem jak się go pozybyć.
int PESEL::leapYear(int rok)
{
int rok;
if (rok % 4 == 0 && rok % 100 != 0 || rok % 400 == 0)
return 1;
else
return 0;
};