런타임 오류가 2개 있는데 왜 그러는지 모르겠네요 ㅠ
하늘
#includestdio.h
#includestring.h
#includestdlib.h
int count,count2;
int i = 0;
typedef struct book
{
int number;
char writer[20];
char name[50];
char company[20];
char date[10];
int money;
struct book *next;
}book;
book *head;
book *end;
book* make_node()
{
book *temp = (book*)malloc(sizeof(book));
temp-next = NULL;
return temp;
}//book리스트 초기화.
void check(int num, book *next)
{
if(next == NULL)
return ;
check(num, next-next);
if(num == next-number)
count++;
}
book *input(book* f)
{
FILE*fp=fopen(input.txt,wt);
book* n_node = (book*)malloc(sizeof(book));
while(1)
{
count = 0;
printf(도서번호 : );
scanf(%d, &n_node-number);
if(f == NULL)
{
break;
}
else
{
check(n_node-number, f);
}
if(count == 1)
{
printf(이미 존재하는 도서번호입니다. 다시 입력해주세요.\n\n);
}
else if(count == 0)
{
break;
}
}
fprintf(fp,%d,n_node-number);
printf(저자: );
scanf(%s,n_node-writer);
fprintf(fp, %s,n_node-writer);
printf(도서명: );
scanf(%s,n_node-name);
fprintf(fp, %s,n_node-name);
printf(출판사: );
scanf(%s,n_node-company);
fprintf(fp, %s,n_node-company);
printf(출판일: );
scanf(%s,n_node-date);
fprintf(fp, %s,n_node-date);
printf(가격: );
scanf(%d,&n_node-money);
fprintf(fp, %d\n,n_node-money);
n_node-next = f;
f = n_node;
fclose(fp);
printf(%d번째 도서 정보에 저장되었습니다.\n\n,i+1);
i++;
return f;
}//도서정보 입력함수.
void search_writer(char writer1[], book *next) // 저자검색
{
while(next!= NULL)
{
if(strcmp(writer1,next-writer)==0)
{
printf(%d %s %s %s %s %d\n, next-number, next-writer, next-name, next-company,next-date,next-money);
count2++;
break;
}
next = next-next;
}
}
void search_name(char name1[], book *next) // 저자검색
{
while(next!= NULL)
{
if(strcmp(name1,next-name)==0)
{
printf(%d %s %s %s %s %d\n, next-number, next-writer, next-name, next-company,next-date,next-money);
count2++;
break;
}
next = next-next;
}
}
void delete_node(int number1)
{
book* prev;
book* del;
head=(book*)malloc(sizeof(book));
end=(book*)malloc(sizeof(book));
for(prev=head; prev!=end; prev=prev-next)
{
if(prev-next-number == number1)
{
del=prev-next;
break;
}
}
prev-next = prev-next-next;
free(del);
}
void Print(book *next)
{
if(next == NULL)
Rreturn ;
Print(next-next);
printf(\n%d %s %s %s %s %d\n, next-number,next-writer,next-name,next-company,next-date,next-money);
}
void load_data()
{
book *temp = (book*)malloc(sizeof(book));
FILE*fp=fopen(input.txt,rt);
if(fp==NULL)
{
printf(불러올 내용이 없습니다.\n);
return;
}
while(temp!=NULL)
{
fscanf(fp,%d %s %s %s %s %d\n,temp-number,temp-writer,temp-name,temp-company,temp-date,temp-money);
temp=temp-next;
}
fclose(fp);
}
int main(void)
{
book *f = NULL;while(1)//무한루프.
{
char writer1[20], name1[50];
int choice,number1;
printf(도서 관리 프로그램\n\n);
printf(1. 도서입력\n);
printf(2. 저자별 검색\n);
printf(3. 제목 검색\n);
printf(4. 도서 삭제\n);
printf(5. 도서 목록 출력\n);
printf(6. 종료\n);
printf(메뉴를 선택하세요 : );
scanf(%d, &choice);
load_data();
if(choice == 1)
{
printf(===도서입력 메뉴를 선택하셨습니다===\n);
printf(1. 도서입력\n);
printf(2. 상위메뉴\n);
printf(선택하세요:);
scanf(%d,&choice);
if(choice==1)
{
f = input(f);
}
else if(choice==2)
{
printf(상위메뉴로 돌아갑니다.\n);
}
else
{
printf(잘못입력하셨습니다. 상위 메뉴로 돌아갑니다.\n);
}
}
else if(choice == 2)
{
printf(===저자별 검색 메뉴를 선택하셨습니다===\n);
printf(저자명을 입력하세요:);
scanf(%s, writer1);
count2 = 0;
search_writer(writer1,f);
if(count2 == 0)
printf(\n찾는 결과가 없습니다.\n\n);
}
else if(choice == 3)
{
printf(제목별 검색 메뉴를 선택하셨습니다.\n);
printf(제목을 입력하세요:);
scanf(%s, name1);
count2 = 0;
search_name(name1, f);
if(count2 == 0)
printf(\n찾는 결과가 없습니다.\n\n);
}
else if(choice == 4)
{
printf(도서 삭제 메뉴를 선택하셨습니다.\n);
printf(삭제하고 싶은 도서의 도서번호를 입력해주세요.\n);
printf(도서번호를 모르실 경우 상위메뉴의 도서정보출력 메뉴에서 확인가능합니다.\n);
printf(도서번호:);
scanf(%d,&number1);
delete_node(number1);
printf(삭제완료하였습니다.\n);
}
else if(choice == 5)
{
printf(전체 도서 목록 출력 메뉴를 선택하셨습니다.\n);
printf(1. 콘솔출력 2. 파일출력\n);
printf(출력방식을 선택하십시오:);
scanf(%d,&choice);
if(choice==1)
{
Print(f);
}
else
{
}
}
else if(choice == 6)
{
printf(프로그램을 종료합니다.\n);
break;
}
else
{
printf(잘못입력하셨습니다.\n);
}
}
return 0;
}
위에 표시해놓은 두 함수때문에 런타임 오류가 생기던데 왜 그런걸까요 ㅠㅠ
텀과제하느냐 2일 꼬박했는데 미치겠네요 ㅠㅠ
소스파일첨부할께요 ㅠ 부탁드립니다 ㅠ
번호 | 제 목 | 글쓴이 | 날짜 |
---|---|---|---|
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 |