문제
서울의 오늘 날짜를 출력하는 프로그램을 작성하시오.
출력
서울의 오늘 날짜를 "YYYY-MM-DD" 형식으로 출력한다.
예제 출력
2015-01-24
Solution
#include <iostream>
int main(){
std::cout << "2022-08-04";
return 0;
}
추가로, 문자열만 입력하는 것이 현재 날짜와 현재 시간을 출력할 수 있도록 하는 코드다.
#include <iostream>
#include <ctime>
#include <string>
#include <stdio.h>
const std::string currentDateTime() {
time_t now = time(0);
struct tm tstruct;
char buf[80];
tstruct = *localtime(&now);
strftime(buf, sizeof(buf), "%Y-%m-%d",&tstruct);
return buf;
}
int main() {
std::cout << currentDateTime();
}
'BOJ 코딩테스트 > Bronze' 카테고리의 다른 글
BOJ 10998번 : A×B (C++/Python/Bronze 5) (0) | 2022.08.04 |
---|---|
BOJ 25083번 : 새싹 (C++/Bronze 5) (0) | 2022.08.04 |
BOJ 7287번 : 등록 (C++/Bronze 5) (0) | 2022.08.04 |
BOJ 2577번 : 숫자의 개수 (C++/Bronze 2) (0) | 2022.08.03 |
BOJ 2231번 : 분해합 (C++/Bronze 2) (0) | 2022.08.02 |