如何从目标c中的秒间隔获取小时和分钟

发布于 2024-12-27 06:42:00 字数 165 浏览 1 评论 0原文

我的两个日期时间之间有时间差。以秒为单位的间隔是 3660,表示 1 小时 1 分钟前。我怎样才能像我之前说的那样显示以小时和分钟为单位的秒间隔?我可以通过执行 (3600/60)/60 来获取小时数,这给了我一小时,但是我如何获取剩余的分钟数和小时数?

任何帮助表示赞赏。

I have a time difference between two datetimes. The interval in seconds is 3660 which means 1 hour and 1 minute ago. How can i show the interval of seconds in hours and minutes like i said before? i can get the hours by doing (3600/60)/60 which gives me the one hour but how do i get the remaining minutes along with the hour?

Any help appreciated.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

有深☉意 2025-01-03 06:42:00

像这样的东西:

int totalTime = 3660;
int hours = totalTime / 3600;
int minutes = (totalTime % 3600) / 60;

Something like this:

int totalTime = 3660;
int hours = totalTime / 3600;
int minutes = (totalTime % 3600) / 60;
扭转时空 2025-01-03 06:42:00

使用取模运算符:

(3660 / 60) % 60 = 1

取模示例:

0 % 3 = 0
1 % 3 = 1
2 % 3 = 2
3 % 3 = 0
4 % 3 = 1
5 % 3 = 2
6 % 3 = 0
7 % 3 = 1
...

看到这里的模式了吗?

Use the modulo operator:

(3660 / 60) % 60 = 1

Example of modulo:

0 % 3 = 0
1 % 3 = 1
2 % 3 = 2
3 % 3 = 0
4 % 3 = 1
5 % 3 = 2
6 % 3 = 0
7 % 3 = 1
...

See the pattern here?

薄情伤 2025-01-03 06:42:00

您可以使用 C div 函数通过单个函数调用获取商和余数。

#include <stdio.h>
#include <stdlib.h>  //div_t

int main (int argc, char const *argv[])
{
  int seconds = 3661;
  div_t hrmin, minsec;
  minsec = div(seconds, 60);
  hrmin = div(minsec.quot, 60);

  printf("%i seconds equals %i hours, %i minutes and %i seconds.\n", \
         seconds, hrmin.quot, hrmin.rem, minsec.rem);

  return 0;
}

You can use the C div function for getting the quotient and remainder with a single function call.

#include <stdio.h>
#include <stdlib.h>  //div_t

int main (int argc, char const *argv[])
{
  int seconds = 3661;
  div_t hrmin, minsec;
  minsec = div(seconds, 60);
  hrmin = div(minsec.quot, 60);

  printf("%i seconds equals %i hours, %i minutes and %i seconds.\n", \
         seconds, hrmin.quot, hrmin.rem, minsec.rem);

  return 0;
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文