如何计算两个不同日期之间的天数

时间:2016-07-12 22:12:53

标签: c

我使用公式计算日历中两个不同日期之间的天数,而我得到的答案与我正在查看的示例相同。我试图遵循以下公式:

N = 1461 x f(年,月)/ 4 + g(月)/ 5 +天

其中 f(年,月)=年-1如果月< = 2.否则返回相同的值。 g(月)=月+ 13如果月< = 2.否则它是月+ 1。

以下是我实施上述公式的方法:

#include <stdio.h>
#define DEBUG

  struct date
    {
      int month ;
      int day ;
      int year ;
    };
  int een (struct date _date)
    {
      int n;
      #ifdef DEBUG
      printf("inside of een function - here is what is in date %i/%i/%i \n", _date.month, _date.day, _date.year);
      #endif
      n = 1461 * f(_date.year, _date.month) / 4 + 153 * g(_date.month) / 5 + _date.day;
      #ifdef DEBUG
      printf("Here is the value of n %i \n", n);
      #endif
      return n;
    }
  int f(int year, int month)
    {
      if (month <= 2)
      year = (year - 1);
      return year;
    }
   int g(int month)
    {
      if (month <= 2)
        month = month + 13;
      else
      month = month +1;
      return month;
    }
int main (void)
{
  struct date first_Day, second_Day;
    int days;
  int een (struct date _date);
  printf ("Enter the first date (mm dd yyyy) :");
  scanf ("%i%i%i", &first_Day.month, &first_Day.day, &first_Day.year);
  #ifdef DEBUG
  printf("Here is what you entered as the first date %i/%i/%i \n", first_Day.month, first_Day.day, first_Day.year);
  #endif
  printf ("Enter Today's date (mm dd yyyy) :");
  scanf ("%i%i%i", &second_Day.month, &second_Day.day, &second_Day.year);
  days = een (second_Day) - een (first_Day);
  printf("Here are the number of days between the dates you put in  %i \n ", days);
}

我正在考虑的一个例子计算2004年8月8日的N如下:

N = 1461 x f(2004,8)/ 4 + 153 x g(8)/ 5 + 3

我知道上面的代码有一些问题。我也不知道他/她在8月8日获得3分。我希望以前有人可能已经使用过这个公式,他们可以解释上面的例子是错误的还是需要额外的解释。我查看过有关此类代码的其他帖子,他们不讨论我的问题。我也查看了其他网站,但未能找到答案。我知道timeanddate.com有一个计算器,根据它,我上面的代码不起作用。

我等了一会儿再看看其他人之前是否使用过这个公式,并得到一些反馈。然后我在g()函数中使用12。

根据作者,这是两个样本计算。 2004年8月8日,他得到了:

N= 1461 x f(2004, 8) / 4 + 153 x g(8) / 5 + 3 
= (1461 x 2004) / 4 + (153 x 9) / 5 + 3 
= 2,927,844 / 4 + (153 x 9) / 5 + 3
= 731,961 + 275 + 3
= 732,239

2005年2月22日,他得到了:

1461 x f(2005, 2) / 4 + 153 x g(2) / 5 + 21
(1461 x 2004) / 4 + 2295 / 5 + 21 
731961 + 459 + 21 
732,441

介于两者之间的天数:731,441 - 732,239 = 202

坦率地说,我不确定他是如何在第34天和第34天中提出3和21的。上述样本中的值。

我也检查了我的回答here,它说了199天。如果我能弄清楚如何计算上述日期的日变量,我想我会好的。我想有一些差异,这取决于每年额外四小时的处理方式。

3 个答案:

答案 0 :(得分:0)

在Windows中你可以这样做:

__int64  since_ft, until_ft;
SYSTEMTIME since, until;

SystemTimeToFileTime(&since, (LPFILETIME)&since_ft);
SystemTimeToFileTime(&until, (LPFILETIME)&until_ft);
int days = (int)((until_ft - since_ft) / (__int64)864000000000);

答案 1 :(得分:0)

  

我添加了其他内容。我得到198而不是202天作为对2004年8月8日和2005年2月22日之间差异的答案。我将更新上面的代码。但它仍然是错误的。

实际上,您的代码可能是正确的。

作为交叉检查,下面是一种方法,使用mktime [旁注:处理闰年]来获取绝对时间,获取差异,然后除以得到数字天。这与大卫的建议类似。

它的输出为198,就像你的一样。我认为它非常准确,但即使有一个一个错误,仍然可以得到答案197-199。 IMO,202太高了。

#include <stdio.h>
#include <string.h>
#include <time.h>

time_t
timeof(int mon,int day,int yr)
{
    struct tm tm;
    time_t tod;

    memset(&tm,0,sizeof(tm));

    tm.tm_year = yr - 1900;
    tm.tm_mon = mon - 1;
    tm.tm_mday = day;

    // minimize funny business with DST crossover or [gag] leap seconds
    tm.tm_hour = 1;

    tod = mktime(&tm);

    return tod;
}

int
main(void)
{
    time_t t1;
    time_t t2;
    time_t td;

    t1 = timeof(8,8,2004);
    t2 = timeof(2,22,2005);

    td = t2 - t1;
    td /= (24 * 60 * 60);

    printf("%ld\n",td);

    return 0;
}

答案 2 :(得分:0)

顺便说一句,您可以使用GNU日期实用程序快速检查日期算术:

$ date -d 'August 8 2004 + 198 days'
Tue Feb 22 00:00:00 EST 2005

所以我坚持用198作为答案。