디데이 프로그램질문좀요^^
또야
질문 제목 : d-day입니다.월,일은 바꾸면 돼는데
년도를 바꾸면 안됩니다. ㅠ_ㅠ 답변좀질문 내용 :
#includestdio.h
#includestdlib.h
int main()
{
struct date
{
int year;
int month;
int day;
int total;
};
struct date now, date; // now = 처음 만난 날짜를 위한 구조체이구요
// date = 현재 날짜를 입력 하기위한 구조체입니다.
int i, j, max, max2;
int num[12] = {31,28,31,30,31,30,31,31,30,31,30,31};printf(처음 만난 날짜의 년도(year)를 입력하시오. 년도:);
scanf(%d, &now.year);
printf(처음 만난 날짜의 월(month)을 입력하시오. 월:);
scanf(%d, &now.month);
printf(처음 만난 날짜의 일(day)을 입력하시오. 일:);
scanf(%d, &now.day);
printf(\n);
printf(오늘은? 몇년도(year)를 입력하시오. 년도:);
scanf(%d, &date.year);
printf(오늘은? 몇월(month)를 입력하시오. 월:);
scanf(%d, &date.month);
printf(오늘은? 몇일(day)를 입력하시오. 일:);
scanf(%d, &date.day);
max=num[now.month-1];
if(now.month==2)
{
if((now.year % 4 ==0) && (now.year % 100 !=0) || (now.year % 400 ==0))
{
max = 29;
}
}
now.total=0;
// ---------------------------- 현재까지의 총일수 ---------------------
for(i=1; i==now.year; i++)
{
if((now.year % 4 ==0) && (now.year % 100 !=0) || (now.year % 400 ==0))
{
now.total += 366;
}
else
{
now.total += 365;
}
}
for(i=0; inow.month-1; i++)
{
now.total+=num[i];
}
now.total+=now.day;
max2=num[date.month-1];
if(date.month==2)
{
if((date.year % 4 ==0) && (date.year % 100 !=0) || (date.year % 400 ==0))
{
max2 = 29;
}
}
date.total=0;
//----------------------------- 일정까지의 총일수 ------------------------
for(i=1; i==date.year; i++)
{
if((date.year % 4 ==0) && (date.year % 100 !=0) || (date.year % 400 ==0))
{
date.total += 366;
}
else
{
date.total += 365;
}
}
for(i=0; idate.month-1; i++)
{
date.total+=num[i];
}
date.total+=date.day;
j=date.total-now.total;
printf(만난지 %d일째 돼는 날입니다.\n,j);
system(pause);
return 0;
}
번호 | 제 목 | 글쓴이 | 날짜 |
---|---|---|---|
2690486 | 문자열과 문자형이요 ~ | 다스리 | 2025-04-05 |
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 |