閏年判定
_inline bool IsLeapyear(long iYear) { return (iYear%4)?false:((iYear%400)?((iYear%100)?true:false):true); }
VC覚書きページ...