#C++2571——蓝桥杯2020年第十一届省赛真题-回文日期
摘要:解题思路:用日期遍历会超时,由于回文的特殊性,可以根据年份构造month和day;注意事项:(注意判断构造的日期是否合法);参考代码:#include <iostream>
using namesp……
2571: 蓝桥杯2020年第十一届省赛真题-回文日期
摘要:**部分正确的话,可能要注意到的一些暗含条件:**
1.‘ABABBABA’型回文串中A与B不能相等
2.输出日期必须大于输入日期
```cpp
#include
#include
u……
====================================================================
摘要:#include<stdio.h>int main(){ int i=0,r,year,month,day,t1,t2,c1=1,c2=1; int md[][13]= {{ 0, 31,……
编写题解 2571: 蓝桥杯2020年第十一届省赛真题-回文日期(代码较长但易理解,注释清晰)
摘要:解题思路:注意事项:参考代码:#include<stdio.h>int A(int x);int B(int p);int main(){i……