만년달력 질문 드려요ㅜㅜ
아인
이 만년달력 프로그램에 방향키로 월을 이동 하는 기능을 추가하고 싶은데
오류가 생기네요 ㅠㅜ 좀 도와주세요//#includestdio.h
#includestdlib.h
int Detector(long);
long YYearCnter(long);
long DayAdder(long,int);
void PrintCalender(long,int);
void main(){
long Year;
int Month;
printf(달력출력프로그램입니다^^.\n);
while(1){
printf(연도를 입력하세요.(종료,Y0));scanf(%ld,&Year);
printf(달을 입력하세요.(종료=0));scanf(%d,&Month);
if(Month==0||Year0)
exit(1);
PrintCalender(Year,Month);
}
}
void PrintCalender(long Year,int Month){
long DayCnter;
int Day[6][7];
int i,j,Num=-1;
DayCnter=365*(Year-1)+YYearCnter(Year-1);
DayCnter+=DayAdder(Year,Month-1);
printf(======%d년 %d월======\n,Year,Month);
printf(일 월 화 수 목 금 토\n);
for(i=0;i6;i++){
for(j=0;j7;j++)
Day[i][j]=Num++;
}
for(i=0;i6;i++){
for(j=0;j7;j++)
Day[i][j]-=(DayCnter%7-1);
}
for(i=0;i6;i++){
for(j=0;j7;j++){
if(Month==1||Month==3||Month==5||Month==7||Month==8||Month==10||Month==12){
if(Day[i][j]31||Day[i][j]1)
printf( \t);
else
printf(%d\t,Day[i][j]);
}
else if(Month!=2){
if(Day[i][j]30||Day[i][j]1)
printf( \t);
else
printf(%d\t,Day[i][j]);
}
else{
if(Detector(Year)==0){
if(Day[i][j]29||Day[i][j]1)
printf( \t);
else
printf(%d\t,Day[i][j]);
}
else{
if(Day[i][j]28||Day[i][j]1)
printf( \t);
else
printf(%d\t,Day[i][j]);
}
}
}
printf(\n);
}
}
long YYearCnter(long Year){
long YearCnt=0;
int i;
for(i=1;i=Year;i++){
if(Detector((long)i)==0)
YearCnt++;
}
return YearCnt;
}
long DayAdder(long Year,int Month){
long DayCnt=0;
switch(Month){
case 1://1월
DayCnt+=31;
break;
case 2://2월
if(Detector(Year)==0)
DayCnt+=31+29;
else
DayCnt+=31+28;
break;
case 3://3월
if(Detector(Year)==0)
DayCnt+=31+29+31;
else
DayCnt+=31+28+31;
break;
case 4://4월
if(Detector(Year)==0)
DayCnt+=31+29+31+30;
else
DayCnt+=31+28+31+30;
break;
case 5://5월
if(Detector(Year)==0)
DayCnt+=31+29+31+30+31;
else
DayCnt+=31+28+31+30+31;
break;
case 6://6월
if(Detector(Year)==0)
DayCnt+=31+29+31+30+31+30;
else
DayCnt+=31+28+31+30+31+30;
break;
case 7://7월
if(Detector(Year)==0)
DayCnt+=31+29+31+30+31+30+31;
else
DayCnt+=31+28+31+30+31+30+31;
break;
case 8://8월
if(Detector(Year)==0)
DayCnt+=31+29+31+30+31+30+31+31;
else
DayCnt+=31+28+31+30+31+30+31+31;
break;
case 9://9월
if(Detector(Year)==0)
DayCnt+=31+29+31+30+31+30+31+31+30;
else
DayCnt+=31+28+31+30+31+30+31+31+30;
break;
case 10://10월
if(Detector(Year)==0)
DayCnt+=31+29+31+30+31+30+31+31+30+31;
else
DayCnt+=31+28+31+30+31+30+31+31+30+31;
break;
case 11://11월
if(Detector(Year)==0)
DayCnt+=31+29+31+30+31+30+31+31+30+31+30;
else
DayCnt+=31+28+31+30+31+30+31+31+30+31+30;
break;
case 12://12월
if(Detector(Year)==0)
DayCnt+=31+29+31+30+31+30+31+31+30+31+30+31;
else
DayCnt+=31+28+31+30+31+30+31+31+30+31+30+31;
break;
}
return DayCnt;
}
int Detector(long Year){
if(Year%4==0){
if(Year%100==0){
if(Year%400==0)
return 0;
else return 1;
}
return 0;
}
else return 1;
}
번호 | 제 목 | 글쓴이 | 날짜 |
---|---|---|---|
2690344 | 일본어 주석 깨짐 문제 (3) | 연하얀 | 2025-04-04 |
2690314 | 암호문 만들기 -비제네르- | 이퓨리한나 | 2025-04-03 |
2690292 | 왕초보자의 질문!!!!!! 도와주세요 (1) | 하랑 | 2025-04-03 |
2690269 | 정올 문제 인데.. 흠 | 반월 | 2025-04-03 |
2690237 | sizeof에서 short형을 썻는데 왜 4byte가 나올까요? (1) | 바나나 | 2025-04-03 |
2690183 | 문자열과 포인트 비교 (2) | 미즈 | 2025-04-02 |
2690154 | a -48 ? | 희미한눈물 | 2025-04-02 |
2690094 | 테트리스 질문요. | 지후 | 2025-04-01 |
2690066 | 문자열비교!! (1) | 매디 | 2025-04-01 |
2689888 | 좀도와주세요;; ㅠㅠ | 사람 | 2025-03-30 |
2689856 | 메뉴 그리는 거 질문 | 나라빛 | 2025-03-30 |
2689831 | c언어 프로그램 추천 | 하연 | 2025-03-30 |
2689801 | c언어 time.h에서 작동이 중지되었습니다. | 하람 | 2025-03-30 |
2689772 | 2차원 배열의 배열명에 대해서.. | 옆집꼬마야 | 2025-03-29 |
2689740 | 게임 TCP소켓 질문 (2) | 불꾼 | 2025-03-29 |
2689711 | 반복문 모래시계 | 한뎃집 | 2025-03-29 |
2689685 | 경우의 수에 따른 결과 처리 질문드립니다. (2) | 다흰 | 2025-03-29 |
2689655 | .exe에 아이콘 넣는 법좀 알려주세요 | 연하얀 | 2025-03-28 |
2689631 | #define 전처리문에 대해서 (2) | 사랑은아픔 | 2025-03-28 |
2689580 | 다시 물어볼게요,,, 고수님들 | 가욋길 | 2025-03-28 |