Contents

?

Shortcut

PrevPrev Article

NextNext Article

Larger Font Smaller Font Up Down Go comment Print
?

Shortcut

PrevPrev Article

NextNext Article

Larger Font Smaller Font Up Down Go comment Print

시간 날짜, 요일 출력 초간단 예제 코드

#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;
}


?

List of Articles
No. Category Subject Author Date Views
357 Develop [js] One Time Pad key generatorㅡ.,ㅡ; file hooni 2013.04.23 6789
356 Develop [c] 문자열 컨트롤 함수로 만든 프로그램들.. file hooni 2003.04.23 6786
355 Develop [php] 피코맥스용 검색엔진 ㅋㅋ file hooni 2013.04.23 6781
354 Develop [c] 파일 복사(copy) 프로그램 샘플 소스 file hooni 2003.04.23 6770
353 Develop [js] 실행되는 디렉토리 확인하는 스크립트.. hooni 2013.04.23 6764
352 Develop [js] 한글문서로 된 259가지 자바스크립트 예제파일 file hooni 2013.04.23 6764
351 Develop [c] 프로그래밍 과제..(colprint) file hooni 2003.04.23 6745
350 Develop [c] 시간 계산 하는 프로그램 소스코드 file hooni 2003.04.23 6745
349 Develop [pdf] C 국제 표준 문서 file hooni 2013.04.23 6743
348 Develop [js] 윈도우 시작버튼처럼 나오는 메뉴 file hooni 2013.04.23 6743
347 Develop [c] 싱글, 더블 링크리스트(linked list)로 만든 예제.. file hooni 2003.04.23 6737
346 Develop [js] 이벤트 핸들러(Event Handlers) hooni 2003.04.23 6729
Board Pagination Prev 1 ... 64 65 66 67 68 69 70 71 72 73 ... 98 Next
/ 98