C++课程设计 C++编写的 宠物店信息管理系统源代码下载
2021-10-03 16:41:45 10KB 宠物店信息管理系统
1
#include "stdio h" #include "stdlib h" #include "string h" typedef struct type 定义结构体 该种小动物的信息 { char 【sex】[10]; 性别 char age[10]; 年龄 char color[10]; 颜色 }ty; typedef struct information 定义结构体 小动物的各种信息 { char num[10]; char name[10]; ty a; char sum[10]; }inf; 函数声明 void menu ; 子函数 主菜单 void menu1 ; 菜单1 void information ; 子函数 浏览全部宠物 void write ; 子函数 新增宠物 void change ; 子函数 修改宠物 void delete ; 子函数 删除宠物 void exit ; 退出">#include "stdio h" #include "stdlib h" #include "string h" typedef
2021-06-15 18:09:13 210KB 医院his系统
1