Main.cc: In function 'int main()':
Main.cc:6:15: error: 'MAX_YEARS' was not declared in this scope
int years[MAX_YEARS];
^
Main.cc:8:16: error: 'years' was not declared in this scope
cin >> years[i];
^
Main.cc:11:14: error: 'years' was not declared in this scope
if ((years[i] % 400 == 0) || (years[i] % 4 == 0 && years[i] % 100 != 0)) {
^
Main.cc:4:12: warning: unused variable 'n' [-Wunused-variable]
int t, n;
^