家庭财政管理系统.cpp

时间:2022-12-16 10:28:17
【文件属性】:

文件名称:家庭财政管理系统.cpp

文件大小:9KB

文件格式:CPP

更新时间:2022-12-16 10:28:17

课设

c语言课设,代码功能完整,适合学习(有注释)。 #include #include #include #include #define MAXNAME 11 // 家庭成员姓名的最大长度 #define MAXDETAIL 21   // 注最大长度 // 自定义枚举类型 fi_type ,用来表示收入与支出 typedef enum _fi_type { income=1,// 收入 payout =-1 // 支出 } fi_type; // 家庭财务信息结构体 typedef struct _fi_info { int year; int month; fi_type type; char name[9]; float money; char detail[11]; } fi_info; // 存储财务数据结构的结构体 typedef struct _fi_data { fi_info info; struct _fi_data* next; } fi_dat


网友评论