c语言学生通讯录管理系统

日期:2015-12-16 13:21:14 人气:1

c语言学生通讯录管理系统

//简单的学生通讯录管理系统 #include #include #include #include struct record { char name[20]; //姓名 char phone[12]; //电话 char adress[50]; //地址 char postcode[8]; //邮政编码 char e_mail[20]; //电子邮件。 }student[100];
    A+
热门评论