C언어, 요일계산과 입력한 달의 달력출력 프로그램 완성소스입니다..
세이
#include stdio.h
int month_total[] = {0,31,28,31,30,31,30,31,31,30,31,30,31};
int get_week(int , int , int );
void Calendar(int ,int ,int );
void main() {
char *week_total[] ={일,월,화,수,목,금,토};
int year = 0, month = 0, day = 0 ,get;
printf(\n);
printf(*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*\n);
printf( 년,월,일을 입력하면 요일 출력 프로그램 \n);
printf( 입력한 날의 달력을 출력하는 프로그램 \n);
printf(*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*\n);
printf(\n);
printf(요일을 원하는 날짜를 입력해 주세요 !! 예)2009 11 03\n);
printf(\n);
printf(\t\t);
scanf(%d %d %d,&year,&month,&day);
get = get_week(year, month, day);
printf(\n);
printf( *-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-* \n);
printf( %d년 %d월 %d일 → %s요일 입니다 \n,year,month,day,week_total[get]);
printf( *-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-* \n);
printf(\n);
printf(\n);
printf( *-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-* \n);
printf( %d년 %d월 의 달력입니다. \n,year,month,week_total[get]);
printf( *-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-* \n);
Calendar(year,month,day);
printf(\n);
printf(\n);}
int get_week(int year, int month, int day)
{
int day_total=0,month_total_01=0,day_total_01, temp;
int i;
if((year%4)==0 && ((year%100)!=0 || (year%400)==0))
{
month_total[2] = 29;
}
day_total =(year-1)/4-(year-1)/100+(year-1)/400;
day_total_01 = (year-1)*365 + day + day_total;
for(i=0;imonth;i++)
{
day_total_01 += month_total[i];
}
temp = day_total_01 % 7;return temp;
}
-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*
void Calendar(int year,int month,int day)
{
int month_daty_01[]={31,28,31,30,31,30,31,31,30,31,30,31};
int month_daty_02[]={0,31,28,31,30,31,30,31,31,30,31,30};
int gesan;
int date=0,total_day;
int i,count=0;
if(month==2 && year%100!=0 && year%4==0)
{
month_daty_01[month-1]=month_daty_01[month01[month-1]+1; // 29
}
if(month==2 && year%400==0)
{
month_daty_01[month-1]=month_daty_01[month-1]+1; // 29
}
total_day=(year-1)/4-(year-1)/100+(year-1)/400;
date=(year-1)*365+total_day;
for(i=0;imonth;i++)
{
date=date+month_daty_02[i];
}
printf(일\t월\t화\t수\t목\t금\t토\n);
gesan=date%7+1;
if(gesan==7)
{
gesan=0;
}
for(i=0;igesan;i++)
{
printf( \t);
count++;
}
for(i=1;i=month_daty_01[month-1];i++)
{
if(count!=0&&count%7==0)
{
printf(\n);
}
count++;
printf(%d\t,i);
}
printf(\n);
-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*
}
이번 수업시간에 만들어본 사용자가 입력한 날짜, 즉 2009 11 03 을 입력하면
화요일 이라는 결과와 11월달에 대한 달력이 나오는 소스입니다.
요일을 계산하는 함수부분은 제가 직접했지만
달력이 나오는 (-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*) 이 부분은 친구의 소스를 빌려서 만들어봤습니다.
이해가 안되는 부분이 많아서 그런데
저 부분만 위에서부터 주석좀 해주시면 감사합니다..
번호 | 제 목 | 글쓴이 | 날짜 |
---|---|---|---|
2676182 | 숫자 순서대로 배열하는법 | 권뉴 | 2024-11-24 |
2676152 | 기본적인거 하나 질문드립니다. | 개미 | 2024-11-24 |
2676124 | 함수선언관련 질문이에요~...털썩..수정완료 (2) | 가지 | 2024-11-24 |
2676092 | C언어 책 (2) | 아서 | 2024-11-24 |
2676065 | 웹사이트 또는 메신저 등에서 원하는 텍스트를 검사하는방법?? (1) | 모든 | 2024-11-23 |
2676033 | 배열 기초연습중 발생하는 에러 ㅠㅜ... | Creative | 2024-11-23 |
2676005 | keybd_event 게임 제어 | 영글 | 2024-11-23 |
2675900 | 진짜기본적인질문 | 글길 | 2024-11-22 |
2675845 | 수정좀해주세요ㅠㅠㅠ | 해골 | 2024-11-21 |
2675797 | 병합 정렬 소스 코드 질문입니다. (2) | 도래솔 | 2024-11-21 |
2675771 | 큐의 활용이 정확히 어떻게 되죠?? | 해긴 | 2024-11-21 |
2675745 | 도서관리 프로그램 질문이요 | 도리도리 | 2024-11-20 |
2675717 | 2진수로 변환하는것! (3) | 동생몬 | 2024-11-20 |
2675599 | for문 짝수 출력하는 법 (5) | 널위해 | 2024-11-19 |
2675575 | Linux 게시판이 없어서.. | 첫삥 | 2024-11-19 |
2675545 | 구조체 이용할 때 함수에 자료 넘겨주는 것은 어떻게 해야 하나요? | 아연 | 2024-11-19 |
2675518 | 사각형 가로로 어떻게 반복해서 만드는지좀.. 내용 | 신당 | 2024-11-18 |
2675491 | !느낌표를 입력하는것은 어떻게합니까~~?ㅠㅠ (5) | 사지타리우스 | 2024-11-18 |
2675411 | 파일입출력으로 받아온 파일의 중복문자열을 제거한 뒤 파일출력 | 앨버트 | 2024-11-17 |
2675385 | 링크드리스트 주소록 질문드립니다. (1) | 겨루 | 2024-11-17 |