通讯录管理系统C++实验报告 联系客服

发布时间 : 星期一 文章通讯录管理系统C++实验报告更新完毕开始阅读675f4329ce1755270722192e453610661ed95a9d

int h;

Address *head=NULL ;

cout<<\本程序为通讯录管理系统-----------------\ while(h<=7) { cout<<'\\n';

cout<<'\\t'<<'\\t'<<\请选择你所要实现的功能的编号\

cout<<'\\t'<<'\\t'<<\输入记录***********\

cout<<'\\t'<<'\\t'<<\显示记录*********\

cout<<'\\t'<<'\\t'<<\查阅记录*********\

cout<<'\\t'<<'\\t'<<\删除记录*********\

cout<<'\\t'<<'\\t'<<\保存记录*********\

cout<<'\\t'<<'\\t'<<\读取记录*********\

cout<<'\\t'<<'\\t'<<\添加记录

*********\

cout<<'\\t'<<'\\t'<<\*************\ cin>>h; switch(h) {

case 1:Createlist(head);break; case 2:showlist(head);break; case 3:Chayuelist(head);break; case 4:Delete(head);break; case 5:baocun(head);break; case 6:duqu(head);break; case 7:tianjia(head);break; default :tuichu();break; }

system(\ } }

退