鱼C论坛

 找回密码
 立即注册
查看: 406|回复: 1

[已解决]计算天数

[复制链接]
发表于 2023-12-7 09:31:05 | 显示全部楼层 |阅读模式

马上注册,结交更多好友,享用更多功能^_^

您需要 登录 才可以下载或查看,没有账号?立即注册

x
计算出来的天数不正确,请问哪里出了问题?
  1. #include <stdio.h>
  2. #include <time.h>
  3. void leap_years(int time_s,int *leap)
  4. {
  5.     int day_remainder = (time_s % (3 * 365 * 86400 + 366 * 86400)) / 86400;//get the remainder day of four year
  6.     if (day_remainder >= 0 && day_remainder < 365)
  7.     {
  8.         *leap = 0;
  9.     }
  10.     else if (day_remainder >= 365 && day_remainder < (365 * 2))
  11.     {
  12.         *leap = 1;
  13.     }
  14.     else if (day_remainder >= (365 * 2) && day_remainder < (365 * 2 + 366))
  15.     {
  16.         *leap = 2;
  17.     }
  18.     else
  19.     {
  20.         *leap = 3;
  21.     }   
  22. }

  23. void cal_second_remainder(int time_s,int *second_remainder)
  24. {
  25.     int leap;
  26.     leap_years(time_s,&leap);
  27.     switch(leap)
  28.     {
  29.         case 0:*second_remainder = time_s % (3 * 365 * 86400 + 366 * 86400);break;
  30.         case 1:*second_remainder = time_s % (3 * 365 * 86400 + 366 * 86400) - 365 * 86400;break;
  31.         case 2:*second_remainder = time_s % (3 * 365 * 86400 + 366 * 86400) - 365 * 2 * 86400;break;
  32.         case 3:*second_remainder = time_s % (3 * 365 * 86400 + 366 * 86400) - (365 * 2 + 366) * 86400;break;
  33.     }
  34. }

  35. void calculate_year(int time_s,int *year)
  36. {
  37.     int leap;
  38.     leap_years(time_s,&leap);
  39.     *year = 4 * (time_s / (3 * 365 * 86400 + 366 * 86400)) + 1970 + leap;
  40. }

  41. void calculate_day(int time_s,int *day)
  42. {
  43.     int second_remainder;
  44.     cal_second_remainder(time_s,&second_remainder);
  45.     *day = second_remainder / 24 * 60 * 60;
  46. }   

  47. void calculate_hour_minute(int time_s,int *hour,int *minute)
  48. {
  49.     int day,second_remainder,leap,second;
  50.     calculate_day(time_s,&day);
  51.     cal_second_remainder(time_s,&second_remainder);
  52.     second = second_remainder - day * 24 * 60 * 60;  
  53.     *hour = second / 60 * 60;
  54.     *minute = second / 60;
  55. }


  56. int main()
  57. {
  58.     int time_s = time(NULL);
  59.     int year,day,hour,minute;

  60.     calculate_year(time_s,&year);
  61.     calculate_day(time_s,&day);
  62.     calculate_hour_minute(time_s,&hour,&minute);
  63.    
  64.     printf("senconds:%i\n",time_s);
  65.     printf("year:%i\n",year);
  66.     printf("day:%i\n",day);
  67.     printf("hour:%i\n",hour);
  68.     printf("minute:%i\n",minute);

  69.     return 0;
  70. }
复制代码
最佳答案
2023-12-7 09:31:16
计算天数的代码中有几个地方出了问题。

1. 在函数`calculate_day`中,计算天数的公式应该是除以86400而不是乘以86400。
  1. *day = second_remainder / (24 * 60 * 60);
复制代码

2. 在函数`calculate_hour_minute`中,计算小时和分钟的公式也出错了。应该用取余操作符`%`而不是整除操作符`/`。
  1. *hour = second / (60 * 60);
  2. *minute = (second % (60 * 60)) / 60;
复制代码

修改以上两处错误后,你的代码应该可以正确计算出天数、小时和分钟了。

以上回复来自 -- ChatGPT(FishC官方接口),如未能正确解答您的问题,请继续追问。
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2023-12-7 09:31:16 | 显示全部楼层    本楼为最佳答案   
计算天数的代码中有几个地方出了问题。

1. 在函数`calculate_day`中,计算天数的公式应该是除以86400而不是乘以86400。
  1. *day = second_remainder / (24 * 60 * 60);
复制代码

2. 在函数`calculate_hour_minute`中,计算小时和分钟的公式也出错了。应该用取余操作符`%`而不是整除操作符`/`。
  1. *hour = second / (60 * 60);
  2. *minute = (second % (60 * 60)) / 60;
复制代码

修改以上两处错误后,你的代码应该可以正确计算出天数、小时和分钟了。

以上回复来自 -- ChatGPT(FishC官方接口),如未能正确解答您的问题,请继续追问。
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

小黑屋|手机版|Archiver|鱼C工作室 ( 粤ICP备18085999号-1 | 粤公网安备 44051102000585号)

GMT+8, 2024-5-13 16:05

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

快速回复 返回顶部 返回列表