C語言同學錄實現

2021-06-29 04:50:19 字數 1839 閱讀 7088

實現乙個通訊錄;

通訊錄可以用來儲存1000個人的資訊,每個人的資訊包括:

姓名、性別、年齡、**、住址

提供方法:

1.新增聯絡人資訊

2.刪除指定聯絡人資訊

3.查詢指定聯絡人資訊

4.修改指定聯絡人資訊

5.顯示所有聯絡人資訊

6.清空所有聯絡人

contacts.h

#ifndef contacts_h

#define contacts_h

#endif

#include #include #include #define name_length 100

#define ***_length 20

#define tele_length 20

#define adds_length 20

#define max 1000

struct peopleinfo

;struct contacts

;typedef struct contacts *pcontacts;

int add_contacts(pcontacts pcon);

int del_contacts(pcontacts pcon);

int modify_contacts(pcontacts pcon);

int show_contacts(pcontacts pcon);

int find_contacts(pcontacts pcon);

int clear_contacts(pcontacts pcon);

contac.cpp

#include int find_entry(pcontacts pcon)

} return -1;

}int add_contacts(pcontacts pcon)

printf("請輸入姓名\n");

scanf("%s",pcon->person[pcon->count_user].name);

printf("請輸入性別\n");

scanf("%s",pcon->person[pcon->count_user].***);

printf("請輸入年齡\n");

scanf("%d",pcon->person[pcon->count_user].age);

printf("請輸入**\n");

scanf("%s",pcon->person[pcon->count_user].tele);

printf("請輸入位址\n");

scanf("%s",pcon->person[pcon->count_user].adds);

pcon->count_user++;

return 1;

}int del_contacts(pcontacts pcon)

pcon->count_user--;

return 1;

} else }

int clear_contacts(pcontacts pcon)

int find_contacts(pcontacts pcon)

else }

int modify_contacts(pcontacts pcon)

else }

int show_contacts(pcontacts pcon)

printf("\n");

}

main.cpp

#include int main()

return 0;

}

杏林同學錄 九

班級成員留言簿管理 class notebook delnote.php session start if session is registered superlogin 檢查是否註冊 include config.php if del 1 刪除留言 result mysql query sele...

杏林同學錄 八

班級管理部分 首頁 superadmin.php include class config.php if superadmin else else 班級管理 班級管理 新增成員 顯示 刪除成員 修改成員資訊 班級留言管理 客人留言管理 新增成員 class admin addmember.php s...

杏林同學錄 六

註冊部分 註冊步驟1 class register step1.php 班級通訊錄 註冊第一步 include config.php if submit echo 回答正確,進入第二步。exit 註冊第一步 身份驗證 請回答以下問題 n實在想不起來了,問問管理員吧。註冊步驟2 class regis...