解题思路:
要求解此题,首先需要直到如何判断闰年
当能被4整除但不能被100整除的是闰年,或者能被100和400整除的是闰年
注意事项:
需知道定义红宏时,若后面的条件成立则此时会返回1,不成立则返回0
参考代码:
#include<iostream>
using namespace std;
#define LEAP_YEAR(y) (y%4==0&&y%100!=0||y%100==0&&y%400==0)
int main()
{
int y;
cin >> y;
if (LEAP_YEAR(y))
cout << "L";
else
cout << "N";
return 0;
}
0.0分
0 人评分