3009: 判断闰年 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){ bool flag; int year; …… 题解列表 2023年12月23日 0 点赞 0 评论 47 浏览 评分:0.0
题解 3009: 判断闰年 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){ int a; cin>>a; if(a%…… 题解列表 2023年12月23日 0 点赞 0 评论 82 浏览 评分:0.0
题解 3009: 判断闰年 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){ int a; cin>>a; if(a%…… 题解列表 2023年12月23日 0 点赞 0 评论 113 浏览 评分:9.9
自定义函数判断闰年 摘要:解题思路:注意事项:参考代码:#include <stdio.h> int is_prime_year(int x) { if((x%4==0&&x%100!=0)||x%400==0)…… 题解列表 2023年11月05日 0 点赞 0 评论 95 浏览 评分:9.9
判断闰年(宏定义,给自己找找乐子) 摘要:解题思路:注意事项:参考代码:#include<stdio.h> #define YEAR(a) a%100?(a%4?'N':'Y'):(a%400?'N&…… 题解列表 2023年10月08日 0 点赞 0 评论 169 浏览 评分:0.0
优质题解 判断闰年 C语言 摘要:解题思路:闰年的计算方法有多种,其中比较常见的是公历闰年的计算方法和农历闰年的计算方法。公历闰年的计算方法如下:普通年能被4整除且不能被100整除的为闰年,世纪年能被400整除的是闰年。例如,2000…… 题解列表 2023年07月21日 0 点赞 0 评论 500 浏览 评分:9.9
3009: 判断闰年 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ int a; cin>>a; if(a%4==0&&a%1…… 题解列表 2023年07月13日 0 点赞 0 评论 76 浏览 评分:0.0
3009: 判断闰年(c语言) 摘要:解题思路:能被4整除但不能被100整除,能被400整除的年份就是闰年注意事项:参考代码:#include<stdio.h>int main(){ int a; scanf("%d",&a)…… 题解列表 2023年07月04日 0 点赞 0 评论 199 浏览 评分:0.0
没人交那我交一个看看hhhh 摘要:解题思路:普通闰年:公历年份是4的倍数,且不是100的倍数的,为闰年(如2004年、2020年等就是闰年)。世纪闰年:公历年份是整百数的,必须是400的倍数才是闰年(如1900年不是闰年,2000年是…… 题解列表 2023年03月25日 0 点赞 0 评论 240 浏览 评分:9.9
C++判断闰年详细代码以及注释 摘要:解题思路:最基础的if判断来写注意事项:无参考代码:#include<iostream>using namespace std;int main(){ int a; //定义一个数,作为年…… 题解列表 2023年03月04日 0 点赞 2 评论 110 浏览 评分:9.9