鱼C论坛

 找回密码
 立即注册
查看: 2423|回复: 1

[已解决]结构体B2无法录入书名而是直接从作者开始录入

[复制链接]
发表于 2020-4-18 10:26:46 | 显示全部楼层 |阅读模式

马上注册,结交更多好友,享用更多功能^_^

您需要 登录 才可以下载或查看,没有账号?立即注册

x
#include<stdio.h>
struct Date{
    int year;
    int month;
    int day;
};
struct Book//结构体名称不是变量名
{
    char title[128];
    char author[128];
    float price;
    struct Date date;//结构体的嵌套
    //unsigned int date;
    char publisher[40];

};//结构体声明并不会分配空间只有当你定义一个新的结构体时才会分配空间

struct Book getInput(struct Book book){
    printf("请输入书名\n");
    scanf("%s",book.title);
    printf("请输入作者\n");
    scanf("%s",book.author);
    printf("请输入售价\n");
    scanf("%f",&book.price);
    printf("请输入出版日期\n");
    scanf("%d",&book.date.year,&book.date.month,&book.date.day);
    printf("请输入出版社\n");
    scanf("%d",book.publisher);
   
    return book;
}

void output(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("出版社名称%d\n",book.publisher);
}
int main(void)
{
        struct Book b1,b2;
    printf("请录入第一本书的信息\n");
    b1 = getInput(b1);
    putchar('\n');
    printf("请录入第二本书的信息\n");   
    b2=getInput(b2);
    printf("\n\n信息录入完毕,现在开始打印\n");
    output(b1);
    output(b2);
最佳答案
2020-4-19 12:56:11
本帖最后由 jkluoling1992 于 2020-4-19 12:59 编辑

struct Date{
    int year;
    int month;
    int day;
};
struct Book//结构体名称不是变量名
{
    char title[128];
    char author[128];
    float price;
    struct Date date;//结构体的嵌套
    //unsigned int date;
    char publisher[40];
   
};//结构体声明并不会分配空间只有当你定义一个新的结构体时才会分配空间

struct Book getInput(struct Book book){
    printf("请输入书名\n");
    scanf("%s",book.title);
    printf("请输入作者\n");
    scanf("%s",book.author);
    printf("请输入售价\n");
    scanf("%f",&book.price);
    printf("请输入出版日期\n");
    scanf("%d%d%d",&book.date.year,&book.date.month,&book.date.day);
    printf("请输入出版社\n");
    scanf("%s",book.publisher);
   
    return book;
}

void output(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);
}

标红的地方,格式写的有问题,还有年月日,要写三个%d

函数getInput 写的又问题,导致b2 输出的时候有些信息缺失
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2020-4-19 12:56:11 | 显示全部楼层    本楼为最佳答案   
本帖最后由 jkluoling1992 于 2020-4-19 12:59 编辑

struct Date{
    int year;
    int month;
    int day;
};
struct Book//结构体名称不是变量名
{
    char title[128];
    char author[128];
    float price;
    struct Date date;//结构体的嵌套
    //unsigned int date;
    char publisher[40];
   
};//结构体声明并不会分配空间只有当你定义一个新的结构体时才会分配空间

struct Book getInput(struct Book book){
    printf("请输入书名\n");
    scanf("%s",book.title);
    printf("请输入作者\n");
    scanf("%s",book.author);
    printf("请输入售价\n");
    scanf("%f",&book.price);
    printf("请输入出版日期\n");
    scanf("%d%d%d",&book.date.year,&book.date.month,&book.date.day);
    printf("请输入出版社\n");
    scanf("%s",book.publisher);
   
    return book;
}

void output(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);
}

标红的地方,格式写的有问题,还有年月日,要写三个%d

函数getInput 写的又问题,导致b2 输出的时候有些信息缺失
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

小黑屋|手机版|Archiver|鱼C工作室 ( 粤ICP备18085999号-1 | 粤公网安备 44051102000585号)

GMT+8, 2024-11-23 00:19

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

快速回复 返回顶部 返回列表