摘要: #include<iostream> using namespace std; #include<string> //创建通讯录存储最多的人数 #define MAX 1000 //创建联系人结构体 struct Person { string name; int sex; int age; int 阅读全文