C++实现两个日期间差多少天的解决方法

2016-02-19 09:17 14 1 收藏

想要天天向上,就要懂得享受学习。图老师为大家推荐C++实现两个日期间差多少天的解决方法,精彩的内容需要你们用心的阅读。还在等什么快点来看看吧!

【 tulaoshi.com - 编程语言 】

计算原理是先求出每个日期距离1年1月1日的天数差值,再进一步做差即可。
代码如下:

#include stdio.h
struct MyDate
{
 int year;
 int month;
 int day;
};

(本文来源于图老师网站,更多请访问http://www.tulaoshi.com/bianchengyuyan/)

int GetAbsDays(MyDate x)
{
 int i;
 int month_day[] = {31,28,31,30,31,30,31,31,30,31,30,31};
 int year = x.year-1;  // 因为欲求距离1年1月1日的距离
 int days = year * 365 + year/4 - year/100 + year/400;  //求得之前闰年的数量并在天数上进行想加
 if(x.year%4==0 && x.year%100!=0 || x.year%400==0) month_day[1]++; //当前年为闰年,二月加 1
 for(i=0; ix.month-1; i++)
  days += month_day[i];
 days += x.day-1;  //今天应该是不算如天数计数
 return days;
}

(本文来源于图老师网站,更多请访问http://www.tulaoshi.com/bianchengyuyan/)

int GetDiffDays(MyDate a, MyDate b)
{
 return GetAbsDays(b) - GetAbsDays(a);
}

int main(int argc, char* argv[])
{
 MyDate a = {1842,5,18};
 MyDate b = {2000,3,13};
 int n = GetDiffDays(a,b);
 printf("%dn", n);
}

来源:http://www.tulaoshi.com/n/20160219/1590252.html

延伸阅读
标签: 电脑入门
1. 用系统自带的磁盘管理把D盘搞点过来。D盘先删除卷,再C盘扩展卷。别说你D盘没空间了,那就把电脑扔了吧。 2.删除windows.old文件可省上10G,另外,年,你C盘给的空间实在太小,后期占用还会持续增长,不会优化的话还是用回WIN7吧。如何删除windows old文件度娘有介绍。 除了从D盘弄点空间过来就是删除旧的Window。windows.old如果删除...
代码如下: #include "stdafx.h" #includeiostream using namespace std; int _tmain(int argc, _TCHAR* argv[]) { char s1[60]="kingbaby"; char *s2="hello"; int i=0;int j=0; while(s1[i]!='\0')i++; while((s1[i]=s2[j])!='\0'){ j++;i++; } couts1endl; return 0; } 方法二 代码如下: #include "stdafx.h" #incl...
1.导入Excel类型库 使用Visual C++的扩展指令#import导入Excel类型库: 代码如下: #import "C:\\Program Files\\Common Files\\microsoft shared\\OFFICE14\\MSO.DLL" \     rename("RGB","MsoRGB") \     rename("SearchPath","MsoSearchPath") #import "C:\\Program Files\\Common Files\\Microsoft Sh...
标签: PHP
  //在PHP中处理日期非常不方便,比如求两个日期之间相差的月份?该怎么办呢?  //文件名:date.inc.php3  //在使用这两个函数前,要先将日期或日期时间转换成timestamp类型。  //如:  //$today=mktime(0,0,0,date("m"),date("d"),date("Y"));  /****模拟sqlserver中的dateadd...
高斯分布也称为正态分布(normal distribution) 常用的成熟的生成高斯分布随机数序列的方法由Marsaglia和Bray在1964年提出,C++版本如下: 代码如下: #include stdlib.h #include math.h double gaussrand() {     static double V1, V2, S;     static int phase = 0;     double X; &n...

经验教程

844

收藏

54
微博分享 QQ分享 QQ空间 手机页面 收藏网站 回到头部