Blog/content/posts/2024/examples/seconds-to-minutes-and-hour...

25 lines
557 B
Markdown
Raw Normal View History

---
title: "🕰️ Преобразование секунд в минуты и часы"
date: 2024-01-28T20:18:33+03:00
draft: false
tags: [c, cpp, tips, development]
---
### Пример на Си
```c
#include <stdio.h>
int main(int argc, char const *argv[]) {
unsigned int seconds = 800000 + 61;
unsigned int minutes = seconds / 60;
unsigned int hours = minutes / 60;
printf("H: %d\nM: %d\nS: %d\n", hours, minutes % 60, seconds % 60);
return 0;
}
```
🗨️ [Вопросы и предложения](https://t.me/db_o_qp)