TOPIC
Presentation Error
William Secchi asked 11 months ago
include
include
using namespace std;
int main () {
int N = 0;
scanf("%i", &N);
printf ("%i:%i:%i \n", N / 3600, N / 60 % 60, N % 3600 % 60);
return 0; }
This topic was solved and cannot recieve new replies.