• 大小: 2.83KB
    文件类型: .zip
    金币: 1
    下载: 0 次
    发布日期: 2021-02-21
  • 标签:

资源简介

C++实战源码-如何使用嵌套结构(入门级实例081).zip

资源截图

代码片段和文件信息

// nest.cpp : Defines the entry point for the console application.
//

#include “stdafx.h“
#include “iostream.h“
#include “string.h“

struct Date
{
int monthdayyear;//年月日
};

struct Student //学生信息
{
long int num; //学号
char name[20]; //姓名
char sex[4]; //性别
char addr[20]; //地址
Date birthDate; //出生日期
};


int main(int argc char* argv[])
{
Student s1 = {1002“张三““男““北京“{5161981}};

//输出学生信息
cout << “学号:“ << s1.num << “\n“
<< “姓名:“ << s1.name << “\n“
<< “性别:“ << s1.sex << “\n“
<< “地址:“ << s1.addr << “\n“
<< “出生日期:“ << s1.birthDate.year << “-“ 
<< s1.birthDate.month << “-“ <<
s1.birthDate.day << “\n“;

return 0;
}



 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     文件         733  2010-07-02 10:59  nest\nest.cpp
     文件        4512  2010-07-02 10:32  nest\nest.dsp
     文件         533  2010-07-02 10:32  nest\nest.dsw
     文件         291  2010-07-02 10:32  nest\StdAfx.cpp
     文件         769  2010-07-02 10:32  nest\StdAfx.h

评论

共有 条评论