Recent Posts
Notice
No Rules Rules
오늘 날짜 (feat. 백준, 10699번) 본문
728x90
반응형
오늘 날짜
https://www.acmicpc.net/problem/10699
반응형
// woohyeon.kim
// kim519620.tistory.com
#include <iostream>
#include <time.h>
using namespace std;
int main(){
time_t timer;
struct tm* t;
timer = time(NULL);
t = localtime(&timer);
printf("%04d-%02d-%02d", t->tm_year + 1900, t->tm_mon + 1, t->tm_mday);
return 0;
}
// *&)*@*
년-월-일 을 출력하는 문제입니다.
728x90
반응형
'생활 > 코테' 카테고리의 다른 글
Z (feat. 백준, 1074번) (0) | 2022.09.27 |
---|---|
연결 요소의 개수 (feat. 백준, 11724번) (0) | 2022.09.26 |
마트료시카 합치기 (feat. 백준, 25631번) (0) | 2022.09.26 |
숫자의 개수 (feat. 백준, 25629번) (0) | 2022.09.26 |
홀짝 수열 (feat. 백준, 25629번) (0) | 2022.09.26 |
Comments