牛客1号~
牛客1号~
全部文章
分类
归档
标签
去牛客网
登录
/
注册
牛客1号~的博客
全部文章
(共2篇)
题解 | #打印日期#
#include <iostream> using namespace std; bool LeapYear(int year) { if((year % 4 == 0 && year % 100 != 0) || year % 400 == 0) { ...
2023-12-20
1
160
题解 | #日期差值#
#include <iostream> using namespace std; //计算当年月和日的天数 int GetMonthDay(int year, int month, int day) { int GetMonthday[13] = {0,31,59,90,120,...
2023-12-20
2
251