[C++][백준 10699] 오늘 날짜

PublicMinsu·2024년 6월 26일
0

문제

접근 방법

현재 시간을 구할 수 있는 방법을 알아내야 한다.

코드

#include <iostream>
#include <ctime>
using namespace std;
int main()
{
    ios::sync_with_stdio(0), cin.tie(0);

    time_t now = time(NULL);
    struct tm *t = localtime(&now);

    cout.fill('0');

    cout.width(4);
    cout << (t->tm_year + 1900) << "-";
    cout.width(2);
    cout << (t->tm_mon + 1) << "-";
    cout << (t->tm_mday);
    return 0;
}

풀이

현재 시간을 구할 수 있는 함수를 활용하여 구한 뒤 형식에 맞추어 출력하면 된다.

profile
연락 : publicminsu@naver.com

0개의 댓글