#include <stdio.h>
int main (void)
{
float a;
printf("How many minutes did the trains take to meet?");
scanf("%f", &a);
printf("It took %dhours %dminutes %dseconds for the trains to meet.\n", (int)a/60, (int)a%60, 60*(a-(int)a));
return 0;
}
이렇게 짜봤는데 초가 자꾸 0이 뜨네요...
제 짧은 지식으로는 저렇게 해준다음에, 정수형으로 바꿔주니깐 초만 딱 남을꺼 같은데 왜 0이 뜰까요? ㅠㅠ