1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324
| #include<iostream> using namespace std; #include <string> #define MAX 1000
struct Person { string m_Name; int m_Gender; int m_Age; string m_Tel; string m_Addr; };
struct Addressbooks { struct Person personArray[MAX];
int m_Size; };
void addPerson(Addressbooks* ads) { if (ads->m_Size == MAX) { cout << "通讯录已满,无法添加" << endl;
} else { string name; cout << "请输入姓名" << endl; cin >> name; ads->personArray[ads->m_Size].m_Name = name; cout << "请输入性别" << endl; cout << "1——男" << endl; cout << "2——女" << endl; int gender = 0; while (true) { cin >> gender; if (gender == 1 || gender == 2) { ads->personArray[ads->m_Size].m_Gender = gender; break; } cout << "输入有误请重新输入" << endl; } cout << "请输入年龄" << endl; int age = 0; cin >> age; ads->personArray[ads->m_Size].m_Age = age; string tel; cout << "请输入电话" << endl; cin >> tel; ads->personArray[ads->m_Size].m_Tel = tel; cout << "请输入家庭住址" << endl; string address; cin >> address; ads->personArray[ads->m_Size].m_Addr = address; ads->m_Size++; cout << "添加成功" << endl; system("pause"); system("cls"); } }
void showPerson(Addressbooks* ads) { if (ads->m_Size == 0) { cout << "当前记录为空" << endl;
} else { for (int i = 0; i < ads->m_Size; i++) { cout << "姓名:" << ads->personArray[i].m_Name << "\t"; cout << "年龄:" << ads->personArray[i].m_Age << "\t"; cout << "性别:" << (ads->personArray[i].m_Gender == 1 ? "男" : "女" )<< "\t"; cout << "性别:" << ads->personArray[i].m_Gender << "\t"; cout << "电话:" << ads->personArray[i].m_Tel << "\t"; cout << "住址:" << ads->personArray[i].m_Addr << endl; cout << "----------------------------------------------------------------------------------------" << endl; } } system("pause"); system ("cls"); }
int isExist(Addressbooks* ads, string name) { for (int i = 0; i < ads->m_Size; i++) { if (ads->personArray[i].m_Name == name) { return i; } } return -1; }
void deletePerson(Addressbooks* ads) { cout << "请输入您要删除的联系人" << endl; string name; cin >> name;
int ret = isExist(ads, name); if (ret != -1) { for (int i = ret; i < ads->m_Size; i++) { ads->personArray[i] = ads->personArray[i + 1]; } ads->m_Size--; cout << "删除成功" << endl; } else { cout << "查无此人" << endl; } system("pause"); system("cls"); }
void findPerson(Addressbooks* ads) { cout << "请输入您要查找的联系人" << endl; string name; cin >> name;
int ret = isExist(ads, name); if (ret != -1) { cout << "姓名:" << ads->personArray[ret].m_Name << "\t"; cout << "性别:" << ads->personArray[ret].m_Gender << "\t"; cout << "年龄:" << ads->personArray[ret].m_Age << "\t"; cout << "电话:" << ads->personArray[ret].m_Tel << "\t"; cout << "住址:" << ads->personArray[ret].m_Addr << endl; } else { cout << "查无此人" << endl; } system("pause"); system("cls"); }
void modifyPerson(Addressbooks* ads) { cout << "请输入要修改的联系人" << endl; string name; cin >> name;
int ret = isExist(ads, name); if (ret != -1) { string name; cout << "请输入姓名" << endl; cin >> name; ads->personArray[ret].m_Name = name; cout << "请输入性别" << endl; cout << "1——男" << endl; cout << "2——女" << endl; int gender = 0; while (true) { cin >> gender; if (gender == 1 || gender == 2) { ads->personArray[ret].m_Gender = gender; break; } cout<<"输入有误请重新输入"<<endl; } cout << "请输入年龄" << endl; int age; cin >> age; ads->personArray[ret].m_Age = age; cout << "请输入联系电话" << endl; string tel; cin >> tel; ads->personArray[ret].m_Tel = tel; cout << "请输入住址" << endl; string adr; cin >> adr; ads->personArray[ret].m_Addr = adr; } else { cout << "查无此人" << endl; } }
void cleanPerson(Addressbooks* ads) { cout << "您是否确定清空联系人" << endl; cout << "1——确定" << endl; cout << "2——取消" << endl; int real; cin >> real; if (real == 1) { ads->m_Size = 0; cout << "通讯录已清空" << endl; } else { cout << "已取消" << endl; }
system("pause"); system("cls");
} void showMenu() { cout << "***************************" << endl; cout << "***** 1、添加联系人 *****" << endl; cout << "***** 2、显示联系人 *****" << endl; cout << "***** 3、删除联系人 *****" << endl; cout << "***** 4、查找联系人 *****" << endl; cout << "***** 5、修改联系人 *****" << endl; cout << "***** 6、清空联系人 *****" << endl; cout << "***** 0、退出通讯录 *****" << endl; cout << "***************************" << endl; }
int main() { Addressbooks ads;
ads.m_Size = 0; int select = 0; while (true) { showMenu(); cin >> select; switch (select) { case 1: addPerson(&ads); break; case 2: showPerson(&ads); break; case 3: deletePerson(&ads);
break; case 4: findPerson(&ads); break; case 5: modifyPerson(&ads); break; case 6: cleanPerson(&ads); break; case 0:cout << "欢迎下次使用" << endl; system("pause"); return 0; break; default:cout << "输入错误,请重新输入" << endl; break; } } system("pause"); return 0; }
|