Contents

?

단축키

Prev이전 문서

Next다음 문서

크게 작게 위로 아래로 댓글로 가기 인쇄
?

단축키

Prev이전 문서

Next다음 문서

크게 작게 위로 아래로 댓글로 가기 인쇄

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

#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
번호 분류 제목 글쓴이 날짜 조회 수
765 Develop [ios] APNS 샘플 코드.. secret hooni 2013.06.27 0
764 Develop [ios] APNS 클라이언트 구현 (pdf) file hooni 2013.06.27 15685
763 Develop [ios] PHP로 APNS 프로바이더~ file hooni 2013.06.27 16840
762 Etc 영어 관련 토렌트 secret hooni 2013.06.25 0
761 Etc 영어 아주 쉬운 영작문 강의 01~60 secret hooni 2013.06.25 0
760 Etc 성문 종합 영어 정리된 pdf 파일 file hooni 2013.06.25 30495
759 Develop 프로그래밍에서 foo, bar 함수의 유래 file hooni 2013.06.25 21237
758 Etc 영작 연습을 위한 실용영어 문장 1001개 (1~500) hooni 2013.06.21 30412
757 Etc 여러 대학 및 권위있는 기관 강좌 모음 ㅋㅋ hooni 2013.06.17 15114
756 Develop [ios] 패스(path) 앱 메뉴 스타일 secret hooni 2013.06.11 0
755 Etc 엑셀 함수 총 정리 ㅎㅎ file hooni 2013.06.05 24456
754 Develop [ios] 스터디 자료 (from 종길M) secret hooni 2013.06.04 0
Board Pagination Prev 1 ... 30 31 32 33 34 35 36 37 38 39 ... 98 Next
/ 98