여기 해더파일(1)과 (2)를 합칠 수 있는지 궁금하고요, 미작성된부분(1)(2)(3) 좀 돠주세요
한국드립
/* 도서 정리 프로그램 */
#include stdio.h
#include book.h
int getuser command();
void getbookinformation(book *p, int n, int index); // 저자이름과 같은 걸 찾는 함수.
void showbookwithauthormain(book *p, int n);
#define max_number 100
int main(int argc, char* argv[])
{
book books[max_number];
int cmd, index=0;
while(1)
{ cmd = getusercommand();
switch(cmd)
{
case 1:
getbookinfomain(books, max_number, index);
index++;
break;
case 2:
showbookwithauthor(books, index);
break;
case 3:
showbookwithtitlwmain(books, index);
break;
}
if(cmd == 4) break;
}
return 0;
}
int getusercammand()
{
int cmd
while(1)
{
printf(\t1. 도서 입력\n wt2. 저자별 검색\n\t3. 제목 검색\n\t4. 끝);
printf(명령 : );
sacanf(%d, &cmd);
if (cmd 1 \ cmd 4){
printf(없는 메뉴입니다. 다시 선택하시오.\n);
continue;
}
break;
}
fflush(stdin);
return 0;
}
void getbookinfomain(book *p, int n, int index)
{
p[index] = getbookinfo();
showbookinfo(&p[index]);
}
void showbookwithauthor(book *p, int n);
{
/*미작성 된부분(1)*/
}
void showbookwithtitlemain(book *p, int n)
{
/*미작성 된부분(2)*/
}
/*여기는 해더파일 입니다(1)*/
#ifndef
#define book_h
type struc book_tag
{
char title[200]
char author[40]
char publisher[20]
int year, month, day, price;
}
book;
book getbookinfo();
void showbookinfo(book *pbook);
void showbookinfos(book *pbook, int n, char author[]);
void showbookwithtitle(book *pbook, int n, char title[]);
#endif
/*여기는 해더파일 입니다(2)*/
#include stdio.h
#include string.h
#include book.h
book getbookinfo()
{
book book;
printf(새 책 정보 입력 ==========\n);
printf(제목 : ); gets(book, title);
printf(저자 : ); gets(book, author);
printf(출판사 : ); gets(book, publisher);
printf(출판일 : );
scanf(%d %d %d, &book.year, &book.month, &book.day);
printf(가격 : );
scan(%d, book.price);
return book;
}
void showbookinfo(book *pbook)
{
printf(------------------------------------------\n);
printf(제목 : %s\n, pbook-title);
printf(저자 : %s\n, pbook-author);
printf(출판사 : %s\n, pbook-publisher);
printf(출판일 : %4d년 %d월 %d일\n, pbook-year, pbook-month, pbook-day);
printf(가격 : %d\n, pbook-price);
}
void showbookinfos(book *book, int n)
{
/*미작성된부분(3)*/
}
void showbookwithauthor(book *pbook, int n, char author[])
{
int i;
for( i=0, in, i++)
{
if(!strcmp(pbook[i].author, author))
{
showbookinfo(&pbook[i]);
}
}
}
void showbookwithtitle(book *pbool, int n, char title)
{
int i;
for( i=0, in, i++)
{
if(!strcmp(pbook[i].title, title))
{
showbookinfo(&pbook[i])
}
}
}
번호 | 제 목 | 글쓴이 | 날짜 |
---|---|---|---|
2690627 | c 변수 선언후 변수값 저장안하고 출력 | 방방 | 2025-04-06 |
2690600 | 릴리즈 모드로 컴파일해서 다른 컴퓨터에서도 실행파일을 실행할수 있는 방법 알려주세요 (5) | 제나 | 2025-04-06 |
2690576 | bin파일 저장 | 다올 | 2025-04-06 |
2690547 | C언어 뒷부분이라 너무 어려워서요;; 프로그래밍 하나만 부탁드립니다 (4) | 그루터기 | 2025-04-05 |
2690517 | cygwin에서요.. (1) | 엘보어 | 2025-04-05 |
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 |