Skip to content

Instantly share code, notes, and snippets.

View igoreon's full-sized avatar
💭
myxach top

igoreon

💭
myxach top
View GitHub Profile
@igoreon
igoreon / seconds.cpp
Created January 9, 2018 20:51
from seconds to h:mm:ss
#include <iostream>
using namespace std;
int
main ()
{
int sec;
cin >> sec;
int hour = 3600;
int min = 60;
hour = sec / hour;