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
번호 분류 제목 글쓴이 날짜 조회 수
837 Develop [js] AngularJS를 소개합니다. file hooni 2014.01.06 13038
836 Etc [용어] POC, Pilot, BMT에 대한 IT 업계에서 통용되는 의미 hooni 2014.01.02 42022
835 Develop [php] 하루 전 날짜 쉽게 구하기. hooni 2013.12.25 12253
834 Develop [php] GregorianToJD(), JDToGregorian() 함수 내용 hooni 2013.12.25 10623
833 System/OS [linux] root 전환시 패스워드 없이 su 사용하기 hooni 2013.12.22 12753
832 System/OS [linux] CentOS 터미널 언어 설정(한글/영어) hooni 2013.12.22 18597
831 Develop [js] jQuery plugin 요약 hooni 2013.12.20 10736
830 Develop [css] z-index에 설정할 수 있는 최대값? hooni 2013.12.20 14748
829 Database [oracle] SQL문 실행 방법 3가지 file hooni 2013.12.19 12169
828 System/OS CentOS 6.5 USB 설치 6 file hooni 2013.12.18 37774
827 Develop [js] 이벤트 전파 3단계 hooni 2013.12.18 9987
826 Develop [js] jQuery 치트 시트 hooni 2013.12.18 36291
Board Pagination Prev 1 ... 24 25 26 27 28 29 30 31 32 33 ... 98 Next
/ 98