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

557 B

title date draft tags
🕰️ Преобразование секунд в минуты и часы 2024-01-28T20:18:33+03:00 false
c
cpp
tips
development

Пример на Си

#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;
}

🗨️ Вопросы и предложения