计算机小混子 2022-03-12 20:18 采纳率: 100%
浏览 20
已结题

为什么输出结果不是10,怎么回事10001呢

为什么输出结果不是10,怎么回事10001呢

#include <iostream>
using namespace std;
int main()
{
    struct date
    {
        int year;
        int month;
        int day;
    };
    //定义baby结构
    struct baby
    {
        int num;
        float weight;
        date birthday;//date 为结构类型

    };
    //声明结构变量并初始化
    baby b1 = { 10001,10,{2002,12,25} };
    //下列是baby结构变量b1的引用
    cout << "b1.num=" << b1.num << endl;
    cout << "b1.weight=" << b1.num << endl;
    cout << "b1.birthday.year=" << b1.birthday.year << endl;
    cout << "b1.birthday.month=" << b1.birthday.month << endl;
    cout << "b1.birthday.day=" << b1.birthday.day << endl;
    cout << "___________________________________________" << endl;
    //声明baby结构变量temp,并进行赋值运算
    baby temp;
    temp = b1;
    cout << "temp.num=" << temp.num << endl;
    cout << "temp.weight=" << temp.num << endl;
    cout << "temp.birthday.year=" << temp.birthday.year << endl;
    cout << "temp.birthday.month=" << temp.birthday.month << endl;
    cout << "temp.birthday.day=" << temp.birthday.day << endl;


}


img

  • 写回答

3条回答 默认 最新

  • _GX_ 2022-03-12 20:37
    关注

    22行和32行输出是.num成员数据,改为.weight

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(2条)

报告相同问题?

问题事件

  • 系统已结题 3月21日
  • 已采纳回答 3月13日
  • 创建了问题 3月12日

悬赏问题

  • ¥15 怎样才能让鼠标沿着线条的中心线轨迹移动
  • ¥60 用visual studio编写程序,利用间接平差求解水准网
  • ¥15 Llama如何调用shell或者Python
  • ¥20 谁能帮我挨个解读这个php语言编的代码什么意思?
  • ¥15 win10权限管理,限制普通用户使用删除功能
  • ¥15 minnio内存占用过大,内存没被回收(Windows环境)
  • ¥65 抖音咸鱼付款链接转码支付宝
  • ¥15 ubuntu22.04上安装ursim-3.15.8.106339遇到的问题
  • ¥15 blast算法(相关搜索:数据库)
  • ¥15 请问有人会紧聚焦相关的matlab知识嘛?