日期计算函数:已知当前日期,求过了一段时间后的日期。

2024-08-28 11:58

本文主要是介绍日期计算函数:已知当前日期,求过了一段时间后的日期。,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

函数的功能是,根据当前日期,计算过了一段时间后的日期。

1. 流程图:

这里写图片描述

2.函数实现:
    /*** Method called to check if the date is valid. * short duration: unit is day. * short[] curData: current date, format is YYMMDD* byte [] expData: store the expected date, format is YYMMDD* Return value: false if fail, else succeed.*/private static boolean vGetExpectDate(short[] curDate, short duration, short [] expDate){short year;short month;short day;short days_left;short day_add = 0;// Assign the real date to year, month, day and houryear = curDate[0];month = curDate[1];day = curDate[2];day_add = duration;// days add to yearwhile(day_add > (days_left = sDaysToNextYear(year, month, day))){// come to the 1st day in 1st month of the next year.year++;month = 1;day = 1;day_add -= days_left;}// days add to monthwhile(day_add > (days_left = sDaysToNextMonth(year, month, day))){month++;day = 1;day_add -= days_left;}// days add to dayday += day_add;// store the expected date into the workbuf.expDate[0] = year;expDate[1] = month;expDate[2] = day;return true;}private static short sDaysToNextYear(byte year, byte month, byte day){byte days_Feb;byte days_month;short ret;switch(month){case 1:case 3:case 5:case 7:case 8:case 10:case 12:days_month = 31;break;case 4:case 6:case 9:case 11:days_month = 30;break;case 2:// Here assumes the year is 20xx, so if the year is leap or not depends on the last byte xx.if(0 == (year % 4))days_month = 29;elsedays_month = 28;break;default:break;}ret = days_month - day + 1;month++;switch(month){case 2:ret += days_Feb;case 3:ret += 31;case 4:ret += 30;case 5:ret += 31;case 6:ret += 30;case 7:ret += 31;case 8:ret += 31;case 9:ret += 30;case 10:ret += 31;case 11:ret += 30;case 12:ret += 31;default:break;}return ret;}private static short sDaysToNextMonth(byte year, byte month, byte day){byte days_month;switch(month){case 1:days_month = 31;break;case 2:// Here assumes the year is 20xx, so if the year is leap or not depends on the last byte xx.if(0 == (year % 4))days_month = 29;elsedays_month = 28;break;case 3:days_month = 31;break;case 4:days_month = 30;break;case 5:days_month = 31;break;case 6:days_month = 30;break;case 7:days_month = 31;break;case 8:days_month = 31;break;case 9:days_month = 30;break;case 10:days_month = 31;break;case 11:days_month = 30;break;case 12:days_month = 31;break;default:break;}return (days_month - day + 1);}

这篇关于日期计算函数:已知当前日期,求过了一段时间后的日期。的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/1114703

相关文章

hdu1171(母函数或多重背包)

题意:把物品分成两份,使得价值最接近 可以用背包,或者是母函数来解,母函数(1 + x^v+x^2v+.....+x^num*v)(1 + x^v+x^2v+.....+x^num*v)(1 + x^v+x^2v+.....+x^num*v) 其中指数为价值,每一项的数目为(该物品数+1)个 代码如下: #include<iostream>#include<algorithm>

poj 1113 凸包+简单几何计算

题意: 给N个平面上的点,现在要在离点外L米处建城墙,使得城墙把所有点都包含进去且城墙的长度最短。 解析: 韬哥出的某次训练赛上A出的第一道计算几何,算是大水题吧。 用convexhull算法把凸包求出来,然后加加减减就A了。 计算见下图: 好久没玩画图了啊好开心。 代码: #include <iostream>#include <cstdio>#inclu

uva 1342 欧拉定理(计算几何模板)

题意: 给几个点,把这几个点用直线连起来,求这些直线把平面分成了几个。 解析: 欧拉定理: 顶点数 + 面数 - 边数= 2。 代码: #include <iostream>#include <cstdio>#include <cstdlib>#include <algorithm>#include <cstring>#include <cmath>#inc

uva 11178 计算集合模板题

题意: 求三角形行三个角三等分点射线交出的内三角形坐标。 代码: #include <iostream>#include <cstdio>#include <cstdlib>#include <algorithm>#include <cstring>#include <cmath>#include <stack>#include <vector>#include <

XTU 1237 计算几何

题面: Magic Triangle Problem Description: Huangriq is a respectful acmer in ACM team of XTU because he brought the best place in regional contest in history of XTU. Huangriq works in a big compa

C++操作符重载实例(独立函数)

C++操作符重载实例,我们把坐标值CVector的加法进行重载,计算c3=c1+c2时,也就是计算x3=x1+x2,y3=y1+y2,今天我们以独立函数的方式重载操作符+(加号),以下是C++代码: c1802.cpp源代码: D:\YcjWork\CppTour>vim c1802.cpp #include <iostream>using namespace std;/*** 以独立函数

实例:如何统计当前主机的连接状态和连接数

统计当前主机的连接状态和连接数 在 Linux 中,可使用 ss 命令来查看主机的网络连接状态。以下是统计当前主机连接状态和连接主机数量的具体操作。 1. 统计当前主机的连接状态 使用 ss 命令结合 grep、cut、sort 和 uniq 命令来统计当前主机的 TCP 连接状态。 ss -nta | grep -v '^State' | cut -d " " -f 1 | sort |

函数式编程思想

我们经常会用到各种各样的编程思想,例如面向过程、面向对象。不过笔者在该博客简单介绍一下函数式编程思想. 如果对函数式编程思想进行概括,就是f(x) = na(x) , y=uf(x)…至于其他的编程思想,可能是y=a(x)+b(x)+c(x)…,也有可能是y=f(x)=f(x)/a + f(x)/b+f(x)/c… 面向过程的指令式编程 面向过程,简单理解就是y=a(x)+b(x)+c(x)

音视频入门基础:WAV专题(10)——FFmpeg源码中计算WAV音频文件每个packet的pts、dts的实现

一、引言 从文章《音视频入门基础:WAV专题(6)——通过FFprobe显示WAV音频文件每个数据包的信息》中我们可以知道,通过FFprobe命令可以打印WAV音频文件每个packet(也称为数据包或多媒体包)的信息,这些信息包含该packet的pts、dts: 打印出来的“pts”实际是AVPacket结构体中的成员变量pts,是以AVStream->time_base为单位的显

批处理以当前时间为文件名创建文件

批处理以当前时间为文件名创建文件 批处理创建空文件 有时候,需要创建以当前时间命名的文件,手动输入当然可以,但是有更省心的方法吗? 假设我是 windows 操作系统,打开命令行。 输入以下命令试试: echo %date:~0,4%_%date:~5,2%_%date:~8,2%_%time:~0,2%_%time:~3,2%_%time:~6,2% 输出类似: 2019_06