如何从目标c中的秒间隔获取小时和分钟
我的两个日期时间之间有时间差。以秒为单位的间隔是 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
像这样的东西:
Something like this:
使用取模运算符:
取模示例:
看到这里的模式了吗?
Use the modulo operator:
Example of modulo:
See the pattern here?
您可以使用 C
div
函数通过单个函数调用获取商和余数。You can use the C
div
function for getting the quotient and remainder with a single function call.