日期处理
lhbat
这个作者很懒,什么都没留下…
展开
-
《算法笔记》3.4小节——入门模拟->日期处理 问题 A: 日期差值
把握今天,才能拥有明天! 难受~~~ #include <stdio.h> int month[13][2] = {{0,0},{31,31},{28,29},{31,31},{30,30},{31,31},{30,30},{31,31},{31,31},{30,30}, {31,31},{30,30},{31,31}}; int isLeap...原创 2018-10-02 15:42:06 · 251 阅读 · 0 评论 -
《算法笔记》3.4小节——入门模拟->日期处理 问题 B: Day of Week
把握今天,才能拥有明天! #include <cstdio> #include <cstring> char month[15][20] = { {}, {"January"}, {"February"}, {"March"}, {"April"}, {"May"}, {"June"}, {"Ju原创 2018-10-07 18:26:56 · 207 阅读 · 0 评论 -
《算法笔记》3.4小节——入门模拟->日期处理 问题 C: 打印日期
把握今天,才能拥有明天! #include<stdio.h> bool run(int aha) { if((aha%4==0&&aha%100!=0)||aha%400==0) return true; else return false; } int main() { int m,n; while(scanf("%...原创 2018-10-07 18:28:49 · 246 阅读 · 0 评论 -
《算法笔记》3.4小节——入门模拟->日期处理 问题 D: 日期类
把握今天,才能拥有明天! 上一题改改就是了。 #include<stdio.h> bool run(int aha) { if((aha%4==0&&aha%100!=0)||aha%400==0) return true; else return false; } int main() { int m,n,o; ...原创 2018-10-07 18:37:07 · 140 阅读 · 0 评论 -
《算法笔记》3.4小节——入门模拟->日期处理 问题 E: 日期累加
把握今天,才能拥有明天! #include <stdio.h> bool run(int aha) { if((aha%4==0&&aha%100!=0)||aha%400==0) return true; else return false; } int main() { int day,year,month,cn...原创 2018-10-07 19:19:28 · 177 阅读 · 0 评论