localtime함수1 [BOJ / C++] 10699번 : 오늘 날짜 문제 서울의 오늘 날짜를 출력하는 프로그램을 작성하시오. 입력 입력은 없다. 출력 서울의 오늘 날짜를 "YYYY-MM-DD" 형식으로 출력한다. Solved.ac 레벨 브론즈 V 풀이 #include using namespace std; int main(){ ios::sync_with_stdio(false); cin.tie(NULL); cout.tie(NULL); time_t timer = time(NULL); struct tm* t = localtime(&timer); int year = t->tm_year + 1900; int month = t->tm_mon + 1; int day = t->tm_mday; if(day < 10){ cout 2022. 12. 3. 이전 1 다음