紅粗體就是與a004不同的地方
簡單來說只是多加了一個條件而已
int main()
{
int t;
int y;
cin >> t;
while(cin >> y , t>0){
if(y%4==0 && y%100!=0 || y%400==0){
cout << "a leap year\n" ;
}
else{
cout << "a normal year\n" ;
}
t--;
}
}