mirror of
https://github.com/ada-dmitry/TMP_C712.git
synced 2026-09-24 01:00:19 +00:00
15 lines
192 B
C
15 lines
192 B
C
#include <stdio.h>
|
|
|
|
void min2time(int mm, int *ph, int *pm);
|
|
|
|
int main()
|
|
{
|
|
int mm, h, m;
|
|
scanf("%d", &mm);
|
|
|
|
min2time(mm, &h, &m);
|
|
|
|
printf("%02d:%02d\n", h, m);
|
|
|
|
return 0;
|
|
} |