|  | 
 
 发表于 2020-8-1 10:35:19
|
显示全部楼层 
| 你忘了取地址:
 复制代码#include <stdio.h>
struct Book
{
        char title[128];
        char author[40];
        float price;
        unsigned int date;
        char publisher[40];
};
int main(void)
{
        struct Book book;
        printf("请输入书名:");
        scanf("%s", book.title);
        printf("请输入作者:");
        scanf("%s", book.author);
        printf("请输入售价:");
        scanf("%f", &book.price);
        printf("请输入出版日期:");
        scanf("%d", &book.date);
        printf("请输入出版社:");
        scanf("%s", book.publisher);
       
        printf("数据录入完毕");
        printf("书名:%s\n",book.title);
        printf("作者:%s\n", book.author);
        printf("售价:%f\n", book.price);
        printf("日期:%d\n", book.date);
        printf("出版社:%s\n", book.publisher);
}
 | 
 |