第四十四课 图书馆作业问题!
各位大佬,我这个程序什么地方写错了啊?为什么不能用,打印出来都是乱码,不然就是报错...
#include<stdio.h>
#include<stdlib.h>
#include<string.h>
struct Date
{
intyear;
int month;
int day;
};
struct Book
{
char title;
char author;
float price;
struct Date date;
char publisher;
};
void getInput(struct Book* book);
void getInput(struct Book* book) {
printf("请输入书名: ");
scanf_s("%s", book->title, 128);
printf("请输入作者: ");
scanf_s("%s", book->author, 40);
printf("请输入售价: ");
scanf_s("%f", &book->price);
printf("请输入出版日期: ");
scanf_s("%d-%d-%d", &book->date.year, &book->date.month, &book->date.day);
printf("请输入出版社: ");
scanf_s("%s", book->publisher, 40);
};
void printfBook(struct Book* book);
void printfBook(struct Book* book)
{
printf("书名: %s\n", book -> title);
printf("作者: %s\n", book->author);
printf("售价: %.2f\n", book->price);
printf("出版日期: %d-%d-%d\n", book->date.year, book->date.month, book->date.day);
printf("出版社: %s\n", book->publisher);
}
int main(void)
{
struct Book *tsg;
struct Book *tsg1;
int num = 0;
int count = 0;
do
{
count++;
tsg1 = (struct Book *)malloc(sizeof(struct Book));
if (tsg == NULL)
{
printf("存储出错!\n");
exit(1);
}
printf("请录入第%d本书的信息...\n",count);
getInput(tsg1);
putchar('\n');
printf("如果结束请输入1");
scanf_s("%d", &num);
tsg = tsg1;
free(tsg1);
} while (num != 10);
int i;
printf("\n\n录入完毕,现在开始打印验证...\n\n");
for (i = 0; i < count; i++)
{
printf("打印第%d本书的信息...\n",i+1);
printfBook(tsg);
putchar('\n');
}
return 0;
} 1,tsg = tsg1;错了,应该为tsg = tsg1;2,free(tsg1);这句话不要。如果释放了,那你输入的数据就没了。 召唤风云 发表于 2020-2-7 19:11
1,tsg = tsg1;错了,应该为tsg = tsg1;2,free(tsg1);这句话不要。如果释放了,那你输入的 ...
谢谢大佬指点.
第一个我明白了.
第二个我想的是在每一次循环中,给tsg赋值完了,就把stg1释放了,在下一次循环的时候在从新申请动态空间,这样不行吗? 你理解错了释放的意思。它的意思是将你要释放的那个指针所指向的变量清除掉。也就是说你写进去的数据被释放掉了。你只是想让指针指向一个新的 变量,根本就不需要释放。 召唤风云 发表于 2020-2-7 20:38
你理解错了释放的意思。它的意思是将你要释放的那个指针所指向的变量清除掉。也就是说你写进去的数据被释放 ...
谢谢,我把释放的删除后就正常了.
页:
[1]