https://github.com/yilinguo121/cp/blob/main/a004.cpp
用while(cin >> n),然後用if判斷(n % 4 == 0 and n % 100 != 0)或是 (n % 400 == 0),如果其中之一成立,那就是閏年,如果不成立就輸出平年。