摘要:
#include#include#includeusing namespace std;#define MAX 1000struct Person{ string name; int sex; // 1男2女 int age; stri... 阅读全文
摘要:
#include#includeusing namespace std;/* 结构体-案例#2 三国英雄:5名英雄,通过冒泡排序按照年龄升序排列*/struct Hero{ string name; int age; string... 阅读全文
摘要:
#include#include#include //随机数用到#include //时间用到using namespace std;/* 结构体-案例#1 三个老师,每个老师带五个学生做毕设*/struct student{ strin... 阅读全文
摘要:
#include#includeusing namespace std;/* 结构体中const的使用场景 用const来防止误操作*/struct student{ string name; int age; int score... 阅读全文
摘要:
#include#includeusing namespace std;/* 结构体做函数参数 值传递&地址传递*/struct student{ string name; int age; int score;};voi... 阅读全文
摘要:
#include#includeusing namespace std;/* 结构体嵌套结构体*/struct student{ string name; int age; int score;};struct teacher{ ... 阅读全文
摘要:
#include#includeusing namespace std;/* 结构体指针 可以通过操作符'->'访问结构体中的成员(属性)*/struct Student{ string name; int age; int sc... 阅读全文
摘要:
#include#includeusing namespace std;/* 结构体数组 将自定义的结构体放入数组中 方便维护*/struct Student{ string name; int age; int score;};... 阅读全文