#include<stdio.h>
struct Book
{
char titile[128];
char author[40];
float price;
unsigned int date;
char publisher[40];
} book;//全局变量
int main()
{
printf(“输入书名”);
scanf("%s",book.titile);
printf(“作者”);
scanf("%s",book.author);
printf(“售价”);
scanf("%s",&book.price);
printf(“出版日期”);
scanf("%s",&book.date);
printf(“出版社”);
scanf("%s",book.publisher);
printf("\n=====数据录用完毕=====\n");
printf("书名:%s\n",book.titile);
printf("作者:%s\n",book.author);
printf("售价:%.2f\n",book.price);
printf("出版日期:%d\n",book.date);
printf("出版社:%s\n",book.publisher);
return 0;
}