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
번호 분류 제목 글쓴이 날짜 조회 수
481 Develop [ios] UIAlertView 초간단 샘플 ㅎㅎ hooni 2013.10.14 46196
480 Develop [ios] UDID와 UUID (디바이스의 Unique Identifier) file hooni 2013.04.23 27399
479 Develop [ios] UDID 사용 제한에 따른 대안들 hooni 2014.03.13 4020
478 Develop [ios] Touch ID 적용 샘플 코드 (예제) file hooni 2015.02.23 766
477 Develop [ios] Thread Loop 내에서 UI 업데이트 방법 hooni 2015.01.03 925
476 Develop [ios] TextField 특정 문자만 사용하도록 하기 hooni 2014.06.30 2789
475 Develop [ios] Swift 4 String, Date, DateFormatter 예제 hooni 2018.10.18 1513
474 Develop [ios] Swift 4 Singleton inheritance hooni 2018.10.31 1690
473 Develop [ios] Swift 4 Dictionary 사용하기 file hooni 2018.11.29 2123
472 Develop [ios] StoryBoard(xib) 없이 프로젝트 만들기 file hooni 2015.02.12 1156
471 Develop [ios] Start developing your navigation app for CarPlay without enrollment file hooni 2020.02.22 125396
470 Develop [ios] SQLite 사용하기(튜토리얼) + 샘플코드 file hooni 2014.03.28 3751
Board Pagination Prev 1 ... 26 27 28 29 30 31 32 33 34 35 ... 71 Next
/ 71