[C++] 현재 시간대 출력하기
현재 시간(연도, 월, 일, 시분초)를 출력해보자!
라이브러리 선언
시간 관련 함수는 아래 라이브러리에 포함되어 있다
#include <ctime>
전체 코드
time_t timer;
timer = time(NULL); //time_t 변수에 시간 정보 저장
struct tm* t = localtime(&timer); //localtime 함수로 포맷 변환
std::cout << "year : " << t->tm_year + 1900 << std::endl;
std::cout << "month : " << t->tm_mon + 1 << std::endl;
std::cout << "day : " << t->tm_mday << std::endl;
std::cout << "hour : " << t->tm_hour << std::endl;
std::cout << "min : " << t->tm_min << std::endl;
std::cout << "sec : " << t->tm_sec << std::endl;
끝!
Leave a comment