728x90
24시간을 12시간 표기로 바꾸기 예제코드: if(), else
포스트 난이도: HOO_Intern
# Example Codes
#include <stdio.h>
#include <stdlib.h>
int main()
{
int userHour, userMinute, hour;
printf("Time(e.g., 23:15):");
scanf("%d:%d", &userHour, &userMinute);
if (userHour > 11)
{
hour = userHour - 12;
if(hour == 12){
printf("Time is 00:%d AM\n", userMinute);
}
else{
printf("Time is %d:%d PM\n", hour, userMinute);
}
}
else{
printf("Time is %d:%d AM\n", userHour, userMinute);
}
printf("Coded by HOO.\n");
return 0;
}
Time(e.g., 23:15):24:15
Time is 00:15 AM
Coded by HOO.
Time(e.g., 23:15):15:36
Time is 3:36 PM
Coded by HOO.
728x90
'C and C++ > C and C++ Examples' 카테고리의 다른 글
[C Examples] 시간대별 통화요금 계산기 예제코드: if, else, char (0) | 2023.02.20 |
---|---|
[C Examples] 세금 계산기 예제코드: if, else if (0) | 2023.02.19 |
[C Examples] GPA 계산기 예제코드: if(), else if() (0) | 2023.02.17 |
[C Examples] 7 Digit ISSN, 8번째 숫자 산출하기 예제코드: if(), else(), %d (0) | 2023.02.15 |
[C Examples] 달러를 동전으로 바꾸는 예제코드 (0) | 2023.02.08 |
댓글