Develop
2013.04.23 16:08
[c] 시간(요일,날짜 포함) 출력하는 프로그램 초간단 코드
Views 8379 Comment 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; }
No. | Category | Subject | Author | Date | Views |
---|---|---|---|---|---|
315 | Develop | [ios] Did UIScrollView End Scrolling? | hooni | 2016.04.19 | 8318 |
314 | Develop | [c] 연산자 우선순위.. ㅋㅋ | hooni | 2013.04.23 | 8304 |
313 | Develop |
[c] 지폰(gphone) 소스.. 수정(암호화)
![]() |
hooni | 2013.04.23 | 8291 |
312 | Develop | [c] 신기한 atoi함수(www.game79.net) | hooni | 2003.04.23 | 8283 |
311 | Develop | [asp] 기본 문법과 제어문 | hooni | 2013.04.23 | 8282 |
310 | Develop |
[c] 로또(Lotto) 번호 생성기
![]() |
hooni | 2013.04.23 | 8279 |
309 | Develop | [linux] crond 사용법.. ㅋㅋ | hooni | 2013.04.23 | 8270 |
308 | Develop | [js] php의 number_format() 함수와 같은.. ㅋㅋ | hooni | 2013.04.23 | 8266 |
307 | Develop |
[js] 한글문서로 된 259가지 자바스크립트 예제파일
![]() |
hooni | 2013.04.23 | 8263 |
306 | Develop |
[linux] 임베디드 리눅스 (embedded linux)
![]() |
hooni | 2013.04.23 | 8262 |
305 | Develop |
[pdf] 포인터 문법 정리 (C pointer)
![]() |
hooni | 2013.04.23 | 8262 |
304 | Develop |
[c] 게임 AI FSM 테스트 샘플 소스.. 꽤 괜찮은 소스..
![]() |
hooni | 2013.04.23 | 8248 |