현재 시간을 구할 수 있는 방법을 알아내야 한다.
#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;
}
현재 시간을 구할 수 있는 함수를 활용하여 구한 뒤 형식에 맞추어 출력하면 된다.