본문 바로가기

algorithm

백준 10699번 오늘 날짜

https://www.acmicpc.net/problem/10699

 

아이디어:

1. 자기 언어에서 날짜를 출력할 수 있는지 묻는 문제

ctime 라이브러리 include > time_t 구조체 > th 구조체와 localtime 함수로 시간 형식

 

// 10699

#include <iostream>
#include <ctime>

using namespace std;

int main() {

	ios::sync_with_stdio(false);
	cin.tie(NULL);

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

	cout << t->tm_year + 1900 << "-" << t->tm_mon + 1 << "-" << t->tm_mday;
	
	return 0;
}

'algorithm' 카테고리의 다른 글

백준 2420번 사파리월드  (0) 2024.10.27
백준 7287번 등록  (0) 2024.10.27
백준 1735번 분수 합  (0) 2024.10.20
백준 13241번 최소공배수  (0) 2024.10.20
백준 1934번 최소공배수  (1) 2024.10.20