本文實(shí)例為大家分享了C語言實(shí)現(xiàn)電話簿的具體代碼,供大家參考,具體內(nèi)容如下
青島網(wǎng)站制作公司哪家好,找成都創(chuàng)新互聯(lián)公司!從網(wǎng)頁設(shè)計(jì)、網(wǎng)站建設(shè)、微信開發(fā)、APP開發(fā)、自適應(yīng)網(wǎng)站建設(shè)等網(wǎng)站項(xiàng)目制作,到程序開發(fā),運(yùn)營維護(hù)。成都創(chuàng)新互聯(lián)公司于2013年開始到現(xiàn)在10年的時(shí)間,我們擁有了豐富的建站經(jīng)驗(yàn)和運(yùn)維經(jīng)驗(yàn),來保證我們的工作的順利進(jìn)行。專注于網(wǎng)站建設(shè)就選成都創(chuàng)新互聯(lián)公司。
#include#include #include #include #include typedef struct Contact{ //定義聯(lián)系人結(jié)構(gòu)體 char name[20]; //姓名 char sex; //性別 char tel[12]; //電話 }Contact; Contact contacts[100]; void show_contact(Contact* conp){ //顯示聯(lián)系人信息 printf("姓名:%s\t性別:%s\t電話:%s\n",conp->name,'w'==conp->sex?"女":"男",conp->tel); } void scan_contact(Contact* conp){ //輸入聯(lián)系人信息 printf("請(qǐng)輸入姓名,性別(w:女m:男),電話:"); scanf("%s%s%s",conp->name,&conp->sex,conp->tel); } void add_contacts(void){ //添加聯(lián)系人 for(int i=0;i<100;i++){ if(0 == contacts[i].sex){ scan_contact(contacts+i); printf("添加成功!\n"); return; } } printf("添加人已滿\n"); } void del_contacts(void){ //刪除聯(lián)系人 char str[20] = {}; printf("請(qǐng)輸入刪除人姓名:\n"); scanf("%s",str); for(int i=0;i<100;i++){ if(0 == strcmp(str,contacts[i].name)){ contacts[i].sex = 0; printf("刪除聯(lián)系人成功\n"); return; } } printf("聯(lián)系人不存在\n"); } void find_contacts(void){ //查找聯(lián)系人 char str[20] = {}; printf("請(qǐng)輸入要查詢的手機(jī)號(hào)\n"); scanf("%s",str); getchar(); for(int i=0;i<100;i++){ if(strstr(contacts[i].tel,str)){ show_contact(contacts+i); } } printf("請(qǐng)輸入任意鍵繼續(xù)...\n"); getch(); } void list_contacts(void){ //顯示聯(lián)系人信息 for(int i=0;i<100;i++){ if(contacts[i].sex){ show_contact(contacts+i); } } printf("請(qǐng)輸入任意鍵繼續(xù)...\n"); getch(); } void change_contacts(void){ //修改聯(lián)系人信息 char str[20] = {}; printf("請(qǐng)輸入要修改的聯(lián)系人姓名:\n"); scanf("%s",str); for(int i=0;i<100;i++){ if(0 == strcmp(str,contacts[i].name)){ show_contact(contacts+i); scan_contact(contacts+i); return; } } printf("沒有找到要修改的聯(lián)系人"); } char menu(void){ system("clear"); printf("歡迎使用電話蒲\n"); printf("--------------\n"); printf("1、添加聯(lián)系人 \n"); printf("2、刪除聯(lián)系人\n"); printf("3、修改聯(lián)系人信息\n"); printf("4、查找聯(lián)系人\n"); printf("5、顯示所有聯(lián)系人\n"); printf("--------------\n"); printf("請(qǐng)輸入指令:"); char cmd = getch(); printf("%c\n",cmd); return cmd; } int main(){ while(true){ switch(menu()){ case '1':add_contacts(); break; case '2':del_contacts(); break; case '3':change_contacts(); break; case '4':find_contacts(); break; case '5':list_contacts(); break; //case '6':exit(); break; default: printf("cmd error!\n"); } } } //------------------------------------總結(jié)------------------------------------------ //添加與刪除聯(lián)系人的突破口:可以選擇性別的返回值來實(shí)現(xiàn)添加與刪除。 //查找聯(lián)系人 strstr()函數(shù)的作用: //strstr(str1,str2) 函數(shù)用于判斷字符串str2是否是str1的子串。如果是,則該函數(shù)返回str2在str1中首次出現(xiàn)的地址;否則,返回NULL。 //因此查找聯(lián)系人時(shí)便可只打出電話的一部分就能查找到聯(lián)系人。 //該程序的弊端:不能每次打開就有之前保存的聯(lián)系人。 //優(yōu)化: 可以將聯(lián)系人保存到文件中,并且在程序打開的時(shí)候打開文件。
以上就是本文的全部內(nèi)容,希望對(duì)大家的學(xué)習(xí)有所幫助,也希望大家多多支持創(chuàng)新互聯(lián)。