Friday, January 19, 2007
C언어] 오늘 요일 이름 구하기, 요일명 출력; Get-Print DAY OF THE WEEK
localtime() 함수가 반환하는 시간 구조체의 tm_wday 멤버로, 오늘의 요일(Day of the Week)에 해당하는 숫자를 얻을 수 있습니다. 일요일 = 0 입니다. 요일 이름이 들어 있는 배열에, 이 숫자를 첨자(인덱스)로 넣으면 현재 "요일명"이 나옵니다.
파일명: 0.cpp
※ 아래 박스 클릭 후, 키보드 화살표 키로 좌우 스크롤 가능함
컴파일 및 실행 결과 화면:
오늘이 금요일이라면 위와 같이 나옵니다.
현재 날짜/시간 구하기: ▶▶ C언어] 현재 날짜/시간/년월일,시분초 구하기 함수(오늘 날짜 시간): Current Date, Time
C에서, 현재 요일 얻기 예제 소스: tm_wday
파일명: 0.cpp
※ 아래 박스 클릭 후, 키보드 화살표 키로 좌우 스크롤 가능함
#include <stdio.h>
#include <time.h>
int main(void) {
time_t timer;
struct tm *t;
char week[7][2 + 1] = { "일", "월", "화", "수", "목", "금", "토" };
timer = time(NULL); // 현재 시각을 초 단위로 얻기
t = localtime(&timer); // 초 단위의 시간을 분리하여 구조체에 넣기
printf("오늘 요일: %s요일\n", week[t->tm_wday]);
return 0;
}
#include <time.h>
int main(void) {
time_t timer;
struct tm *t;
char week[7][2 + 1] = { "일", "월", "화", "수", "목", "금", "토" };
timer = time(NULL); // 현재 시각을 초 단위로 얻기
t = localtime(&timer); // 초 단위의 시간을 분리하여 구조체에 넣기
printf("오늘 요일: %s요일\n", week[t->tm_wday]);
return 0;
}
컴파일 및 실행 결과 화면:
D:\Z>cl 0.cpp && 0.exe
Microsoft (R) 32-bit C/C++ Optimizing Compiler Version 13.10.3077 for 80x86
Copyright (C) Microsoft Corporation 1984-2002. All rights reserved.
0.cpp
Microsoft (R) Incremental Linker Version 7.10.3077
Copyright (C) Microsoft Corporation. All rights reserved.
/out:0.exe
0.obj
오늘 요일: 금요일
D:\Z>
Microsoft (R) 32-bit C/C++ Optimizing Compiler Version 13.10.3077 for 80x86
Copyright (C) Microsoft Corporation 1984-2002. All rights reserved.
0.cpp
Microsoft (R) Incremental Linker Version 7.10.3077
Copyright (C) Microsoft Corporation. All rights reserved.
/out:0.exe
0.obj
오늘 요일: 금요일
D:\Z>
오늘이 금요일이라면 위와 같이 나옵니다.
현재 날짜/시간 구하기: ▶▶ C언어] 현재 날짜/시간/년월일,시분초 구하기 함수(오늘 날짜 시간): Current Date, Time
tag: cpp
C언어 | C/C++ (Visual C++)
<< Home