#include <stdio.h>
#include <stdlib.h>
int main(void)
{
int i,h=0,m=0,s=0;
printf("초(second)를 입력하시오. ");
scanf("%d",&i);
if(i>3600)
{
h=i/3600;
if(i-3600*h>60)
m=i-3600*h;
else
s=i-3600*h;
}
else if(i>60)
{
m=i/60;
s=i-60*m;
}
else
s=i;
printf("[h:%d, m:%d, s:%d]\n",h,m,s);
system("pause");
return 0;
}
2014.02.22 12:06
초(second)를 입력받아서 시,분,초 단위로 구분하기
조회 수 5039 추천 수 0 댓글 0