반응형
조건 :
1) 최대 100개까지의 책을 저장할 수 있다.
2) 구조체로 책의 이름, 저자, 발행일을 저장한다.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 | #include<stdio.h> #include<stdlib.h> #define _CRT_SECURE_NO_WARNINGS #define max 100 typedef struct info { char name[100]; char author[100]; char date[100]; }info; int addbook(int count, info *in) { if (count < max) { printf("\n새로운 도서 등록\n"); printf("1 . 도서명 :"); scanf_s("%s",((in + count)->name),strlen(((in + count)->name))); printf("2 . 저자 :"); scanf_s("%s", ((in + count)->author), strlen(((in + count)->author))); printf("3 . 출판연도 :"); scanf_s("%s", ((in + count)->date), strlen(((in + count)->date))); return 1; } else { printf("Warning : 해당 데이터 베이스 용량이 초과되었습니다.\n"); printf("최대 저장량은 %d개 입니다.\n", max); return 0; } } int all(int count, info *in) { if (count > 0) { printf("\n현재 등록된 책 목록\n"); printf("========================\n"); for (int a = 0; a < count; a++) { printf("%d . 도서명 : %s 저자 : %s 출판년도 : %10s\n", a + 1, (in + a)->name, (in + a)->author, (in + a)->date); } } } int main() { info in[max]; int result, select, count = 0; while (1) { printf("\n [MENU] \n"); printf("==============\n"); printf("1 . 도서 등록\n"); printf("2 . 도서 목록\n"); printf("0 . 종료\n"); printf("==============="); printf("\n"); printf("번호 선택 : "); scanf_s("%d", &select); if (select == 1) { if (1 == addbook(count, in)) count++; } else if (select == 2) { all(count, in); } else if (select == 0) { break; } else { printf("유효하지 않은 입력값입니다.\n"); printf("0~2사이의 값만 입력해 주세요.\n"); } } return 0; } | cs |
반응형