1039-宏定义闰年判断c++ 摘要:原题链接:[https://www.dotcpp.com/oj/problem1039.html](https://www.dotcpp.com/oj/problem1039.html) 参考代…… 题解列表 2024年05月26日 0 点赞 0 评论 294 浏览 评分:10.0
宏定义之闰年判断 摘要:解题思路:要求解此题,首先需要直到如何判断闰年当能被4整除但不能被100整除的是闰年,或者能被100和400整除的是闰年注意事项:需知道定义红宏时,若后面的条件成立则此时会返回1,不成立则返回0参考代…… 题解列表 2024年01月21日 0 点赞 0 评论 107 浏览 评分:0.0
编写题解 1039: 宏定义之闰年判断 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;#define LEAP_YEAR(y) if(y%4==0&&y%100!=…… 题解列表 2023年03月16日 0 点赞 0 评论 80 浏览 评分:0.0
1039: [编程入门]宏定义之闰年判断 摘要:```cpp #include #define LEAP_YEAR(y) (y%100!=0&&y%4==0||y%400==0)?'L':'N' int main() { int y;…… 题解列表 2022年12月06日 0 点赞 0 评论 729 浏览 评分:7.0
C++三目超简 摘要:解题思路:如果年份整除于4但不整除于100则为普通闰年,如果年份整除于400则为世纪闰年.我们可以通过三目运算符来进行判断。注意事项:注意格式规范参考代码:#include <iostream>#de…… 题解列表 2022年11月26日 0 点赞 0 评论 321 浏览 评分:7.3
定义宏,判断是否为闰年 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;#define LEAP_YEAR(y) y%100 ==0 && y%4 ==0 && y…… 题解列表 2022年10月26日 0 点赞 0 评论 84 浏览 评分:0.0
宏定义之闰年判断 摘要: #include #include #include using namespace std; #define LEAP_YEAR(y) fun(y);…… 题解列表 2022年10月12日 0 点赞 0 评论 118 浏览 评分:0.0
题目 1039: [编程入门]宏定义之闰年判断 摘要:```cpp #include using namespace std; int main() { int a; cin >> a; if (a % 400 ==…… 题解列表 2022年08月23日 0 点赞 2 评论 220 浏览 评分:8.0
[编程入门]宏定义之闰年判断 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;long long n;int main(){ cin>>n; if(n%10…… 题解列表 2022年05月07日 0 点赞 0 评论 147 浏览 评分:0.0
宏定义之闰年判断 题解 摘要:解题思路:这题就是判断是否是闰年嘛!简单。判断方法如下:第一、y%4==0并且y%100!=0;第二、y%400==0。注意事项:无。参考代码:#include<bits/stdc++.h>#defi…… 题解列表 2022年05月06日 0 点赞 0 评论 92 浏览 评分:0.0