把数字转换成字符串,这样就好处理了 摘要:思路很简单,运用sprintf函数把数字转换成字符,这样年就是数组下标0-3,月就是4-5,日就是6-7,然后判断一下是不是回文就行了。 ```c #include #include…… 题解列表 2024年10月28日 0 点赞 0 评论 81 浏览 评分:9.9
模拟回文日期 摘要:代码:#include<iostream> #include<algorithm> using namespace std; int n; bool isLeap(int y) { …… 题解列表 2022年03月10日 0 点赞 1 评论 350 浏览 评分:9.9
简单循环暴力求解(c语言版) 摘要:解题思路通过外层for循环年份,内层while循环月份遍历所有日期注意事项:暴力求解并不能拿到所有分数,但可以拿到绝大多数分参考代码:#include<stdio.h>int judge(int n)…… 题解列表 2023年04月01日 0 点赞 0 评论 416 浏览 评分:9.9
蓝桥杯2020年第十一届省赛真题-回文日期的C语言解答 摘要:解题思路: 将八位数看做一个整形,给年月日赋值并检测年月日是否符合要求,若符合要求将此数字赋给数组,首尾判断是否为回文。因为题目只允许打印下一个非ABAB回文日期,所以需要定义一个标志位flog,用…… 题解列表 2022年02月11日 0 点赞 2 评论 1512 浏览 评分:9.0
==================================================================== 摘要:#include<stdio.h>int main(){ int i=0,r,year,month,day,t1,t2,c1=1,c2=1; int md[][13]= {{ 0, 31,…… 题解列表 2023年03月15日 0 点赞 0 评论 95 浏览 评分:0.0
编写题解 2571: 蓝桥杯2020年第十一届省赛真题-回文日期(代码较长但易理解,注释清晰) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int A(int x);int B(int p);int main(){i…… 题解列表 2025年01月13日 0 点赞 0 评论 31 浏览 评分:0.0