3차 5번3차 5번

Posted at 2013. 10. 27. 14:43 | Posted in 2학기/C언어
#include <stdio.h>
int main()

{

int tsec, hour, min, sec;


printf("초<sec>입력 : ");

scanf("%d", &tsec);


hour = tsec/3600;

min = (tsec%3600)/60;

sec = (tsec%3600)%60;


printf(">> 입력한 %d초는 %d시간 %d분 %d초입니다.", tsec, hour, min, sec);


return 0;

}



'2학기 > C언어' 카테고리의 다른 글

3차 7번  (0) 2013.10.27
3차 6번  (0) 2013.10.27
3차 4번  (0) 2013.10.27
3차 3번  (0) 2013.10.27
2차 10번  (0) 2013.10.27
//