求助
用共用体和结构体定义如下变量。(这是个表格)姓名 性别 年龄 婚姻状况
name sex age 未婚 已婚 离婚 婚姻状况标记
配偶子女 年月日
Struct date{
int year;
int month;
int day;
};
struct person {
char name;
char sex;
int age;
union {
int single;
struct {
char spouseName;
int child;
}married;
struct date divorcedDay;
}marital;
int marryFlag;
};
所以有什么问题?
页:
[1]