C语言-判断这一年是不是闰年判断任意年份是否为闰年,需要满足以下条件中的任意一个:① 该年份能被 4 整除同时不能被 100 整除;② 该年份能被400整除。#include <stdio.h>// leap_year 闰年 common_year 平年int main(void){