Develop
2013.04.23 16:08
[c] 시간(요일,날짜 포함) 출력하는 프로그램 초간단 코드
조회 수 8381 댓글 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; }
번호 | 분류 | 제목 | 글쓴이 | 날짜 | 조회 수 |
---|---|---|---|---|---|
841 | Develop | [php] substr() 한글 자를 때 깨짐 방지 | hooni | 2014.01.09 | 21537 |
840 | System/OS |
[linux] iconv를 이용하여 euc-kr 문서를 utf-8로 대량으로 변환하기
![]() |
hooni | 2014.01.09 | 13434 |
839 | Develop | [ios] UIButton multi-line iOS7 | hooni | 2014.01.09 | 13588 |
838 | Etc | iOS 에서 쓸만한 오프라인 구글지도 찾기 | hooni | 2014.01.06 | 17293 |
837 | Develop |
[js] AngularJS를 소개합니다.
![]() |
hooni | 2014.01.06 | 13850 |
836 | Etc | [용어] POC, Pilot, BMT에 대한 IT 업계에서 통용되는 의미 | hooni | 2014.01.02 | 43232 |
835 | Develop | [php] 하루 전 날짜 쉽게 구하기. | hooni | 2013.12.25 | 13599 |
834 | Develop | [php] GregorianToJD(), JDToGregorian() 함수 내용 | hooni | 2013.12.25 | 11558 |
833 | System/OS | [linux] root 전환시 패스워드 없이 su 사용하기 | hooni | 2013.12.22 | 13642 |
832 | System/OS | [linux] CentOS 터미널 언어 설정(한글/영어) | hooni | 2013.12.22 | 19562 |
831 | Develop | [js] jQuery plugin 요약 | hooni | 2013.12.20 | 11594 |
830 | Develop | [css] z-index에 설정할 수 있는 최대값? | hooni | 2013.12.20 | 15959 |