달력출력시 오류문제 해결좀 부탁드립니다.
소년틳터프
달력출력시 오류달력출력시 완전히 출력되지 않는 문제질문 내용 :
모르는 부분이 있어서 질문올립니다.
그 컴파일시 실행은 되는데요. 실행해보면 달력이 완전하게 출력되지 않는 문제가 발생합니다.
1월 2월
3월 4월
5월 6월
7월 8월
9월 10월
11월 12월
이런식으로 출력되는 프로그램인데..
2009년의 경우 4월 8월 10월 12일이 끝까지 출력이 안됩니다. 그이유는 그전달이 토욜일에서 끝나지않으면 빈공간때문에 그옆달이 출력이 안되는거 같은데 어디를 수정해야할지 모르겠습니다 ~~ 한번 아시는분 수정해주시고 주석좀달아주세요 공부하고싶어요~
#include stdio.h
#define sunday 0
#define monday 1
#define tuesday 2
#define wednesday 3
#define thursday 4
#define friday 5
#define saturday 6
int getyearfromuser(void);
void printcalendar(int year);
void printcalendarmonth(int month, int year);
void indentfirstline(int weekday);
int monthdays(int month, int year);
int firstdayofmonth(int month, int year);
char *monthname(int month);
int isleapyear(int year);
void main()
{
int year;
year = getyearfromuser();
printcalendar(year);
}
//사용자 입력.
int getyearfromuser(void)
{
int year=0;
while(1) //for(;;)
{
printf(input:);
scanf(%d,&year);
if (year = 1900)
return (year);
}
}
//해당 연도에 따른 달.
void printcalendar(int year)
{
int month;
for(month = 1; month =12; month+=2)
{
printcalendarmonth(month,year);
printf(\n);
}
}
//달 출력 문
void printcalendarmonth(int month, int year)
{
int weekday, ndays, day = 1;
int weekday2, ndays2, day2 = 1;
int flag = 2;
printf( %s월 \t\t\t\t, monthname(month));
printf( %s월 \n, monthname(month+1));
printf( su mo th we th fr sa\t\t);
printf( su mo th we th fr sa\n);
ndays = monthdays(month, year);
weekday = firstdayofmonth(month , year);
indentfirstline(weekday);
ndays2 = monthdays(month+1, year);
weekday2 = firstdayofmonth(month+1, year);
for(day = 1, day2 = 1 ; day = ndays; day++)
{
if(day = ndays)
{
printf(%3d, day);
}
if (weekday == saturday)
{
printf(\t\t);
while(flag && day2 = ndays2)
{
if(flag == 2)
{
indentfirstline(weekday2);
flag = 1;
}
printf(%3d, day2++);
if(weekday2 == saturday)flag = 0;
weekday2 = (weekday2+1) %7;
}
if(day = ndays)
printf(\n);
flag = 1;
}
weekday = (weekday + 1) % 7;
}
//if(weekday != sunday) printf(\n);
}
//--------------------------------------------------------------
void indentfirstline(int weekday)
{
int i;
for(i = 0; iweekday; i++)
{
printf( );
}
}
//해달 년과 달에 따른 날짜 수.
int monthdays(int month, int year)
{
switch(month)
{
case 2:
if(isleapyear(year)) return (29);
return (28);
case 4:
case 6:
case 9:
case 11:
return(30);
default:
return(31);
}
}
//해당 달에 첫째날
int firstdayofmonth(int month, int year)
{
int weekday, i;
weekday = monday;
for(i = 1900; i year; i++)
{
weekday = (weekday + 365) % 7;
if(isleapyear(i)) weekday = (weekday + 1) %7;
}
for(i = 1; i month; i++)
{
weekday = (weekday + monthdays(i,year)) %7;
}
return(weekday);
}
char *monthname(int month)
{
switch(month)
{
case 1: return(1);
case 2: return(2);
case 3: return(3);
case 4: return(4);
case 5: return(5);
case 6: return(6);
case 7: return(7);
case 8: return(8);
case 9: return(9);
case 10: return(10);
case 11: return(11);
case 12: return(12);
default : return(illegal month);
}
}
int isleapyear(int year)
{
return(((year %4 == 0) && (year %100) !=0) || (year %400) ==0);
}
번호 | 제 목 | 글쓴이 | 날짜 |
---|---|---|---|
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 |