结构体定义、赋值和使用(New和Delete)
1.结构的定义和使用#include#include#includeusing namespace std;struct Date{int month;int day;int year;};struct Student{int num;char name[20];char sex;Date birthday;float score;}student1, stud...