Develop
2013.04.23 16:08
[c] 시간(요일,날짜 포함) 출력하는 프로그램 초간단 코드
조회 수 8379 댓글 0
시간 날짜, 요일 출력 초간단 예제 코드
#include <stdio.h> #include <stdlib.h> #include <time.h> int main() { time_t ltime; struct tm *today; int daysofmonth[] = { 31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31 }; char weekstr[][3] = { "일", "월", "화", "수", "목", "금", "토" }; int year, month, day, month2, th, rmd, adayofweek, OldSec=0; while(1){ time(<ime); today = localtime(<ime); year = today->tm_year + 1900; month = today->tm_mon + 1; day = today->tm_mday; if (month<=2) { rmd = year-1; month2 = month+12; } else { rmd = year; month2 = month; } th = rmd/100; rmd %= 100; adayofweek = (21*th/4 + 5*rmd/4 + 26*(month2+1)/10 + day-1) % 7; if ( OldSec != today->tm_sec ) { system("cls"); printf("%04d. %02d. %02d. (%s) %02d:%02d:%02d KST ", // tm_year는 1900을 더해야 서기 연도가 됨 today->tm_year + 1900, // tm_mon은 1월이 0, 2월이 1... 식으로 되어 있음 today->tm_mon + 1, today->tm_mday, weekstr[adayofweek], today->tm_hour, today->tm_min, today->tm_sec); OldSec = today->tm_sec; } } return 0; }
번호 | 분류 | 제목 | 글쓴이 | 날짜 | 조회 수 |
---|---|---|---|---|---|
483 | Develop |
[c] 도메인(호스트)으로 IP정보 알아오기.. (nslookup과 비슷)
![]() |
hooni | 2013.04.23 | 8553 |
482 | Develop |
[c] 암호화 알고리즘 DES 구현 ㅋㅋ
![]() |
hooni | 2013.04.23 | 8556 |
481 | Develop |
[c] 맵서치인 듯(옛날 컴에서 찾은 자료)
![]() |
hooni | 2013.04.23 | 8557 |
480 | Develop |
[c] KNN(K-nearest neighbor) 패턴인식 과제..
![]() |
hooni | 2013.04.23 | 8557 |
479 | Develop |
[ajax] 이벤트 코드 생성기 작업중.. ㅋㅋ
![]() |
hooni | 2013.04.23 | 8564 |
478 | Develop |
[c] 무선 Radius Server 자료..
![]() |
hooni | 2013.04.23 | 8565 |
477 | Develop |
[c] 플러드 필링 (flood filling) 알고리즘..
![]() |
hooni | 2013.04.23 | 8570 |
476 | Develop |
[c] 더블(이중) 연결리스트 예제..
![]() |
hooni | 2013.04.23 | 8584 |
475 | Develop |
[c] 텍스트 파일(로그)을 정해진 라인 단위로 쪼개주는 코드
![]() |
hooni | 2013.04.23 | 8584 |
474 | Develop |
[c] 문자열 str_shift 예제..
![]() |
hooni | 2013.04.23 | 8589 |
473 | Develop |
[java] 파일 라인수 계산하는 프로그램 (하위 디렉토리까지..)
![]() |
hooni | 2013.04.23 | 8594 |
472 | Develop |
[chm] 비주얼 C++ 팁 모음 문서
![]() |
hooni | 2013.04.23 | 8594 |