最新国产好看的视频,伊人天堂AV在线,国产Aaaaaa视频,蜜臀视频在线观看一区,人妻av色图,密臀久久久精品影片,青青视频免费观看毛片,久草在线观看视,国产三级精品色情在线

C++實現(xiàn)通訊錄小功能

 更新時間:2022年06月20日 14:08:02   作者:糯米團子鴨  
這篇文章主要為大家詳細介紹了C++實現(xiàn)通訊錄小功能,文中示例代碼介紹的非常詳細,具有一定的參考價值,感興趣的小伙伴們可以參考一下

本文實例為大家分享了C++實現(xiàn)通訊錄功能的具體代碼,供大家參考,具體內容如下

思路:

1.顯示菜單欄

void menu() {
?
?? ?cout << "——————————————————" << endl;
?? ?cout << "*********** 1.添加聯(lián)系人 ***********" << endl;
?? ?cout << "*********** 2.刪除聯(lián)系人 ***********" << endl;
?? ?cout << "*********** 3.修改聯(lián)系人 ***********" << endl;
?? ?cout << "*********** 4.查找聯(lián)系人 ***********" << endl;
?? ?cout << "*********** 5.顯示通訊錄 ***********" << endl;
?? ?cout << "*********** 6.清空聯(lián)系人 ***********" << endl;
?? ?cout << "*********** 0.退出通訊錄 ***********" << endl;
?? ?cout << "——————————————————" << endl;
}

2.退出

int main() {
?
?? ?int select = 0;
?? ?cin >> select;
?? ?switch (select) {
?? ??? ?
?? ??? ?case 0://退出通訊錄
?? ??? ? ? ?cout << "歡迎下次使用" << endl;
?? ??? ??? ?system("pause");
?? ??? ??? ?return 0;
?? ??? ??? ?break;
?? ??? ?
?? ?}
?? ?
?? ?system("pause");
?? ?return 0;
}

3.創(chuàng)建結構體

3.1創(chuàng)建聯(lián)系人結構體
3.2創(chuàng)建通訊錄結構體

//定義聯(lián)系人結構體
//姓名、電話號碼、郵箱、地址
struct person {
?? ?string name;
?? ?string number;
?? ?string Email;
?? ?string address;
};
// 定義通訊錄結構體
struct contacts {
?? ?int people_num;
?? ?struct person personarr[MAX];//子結構體:聯(lián)系人信息
};

4.添加聯(lián)系人

void addperson(struct contacts* p) {
?? ?if (p->people_num == MAX ) {
?? ??? ?cout << "通訊錄已滿" << endl;
?? ?}
?? ?else {//添加聯(lián)系人信息
?? ??? ?string name, number, Email, address;
?? ??? ?cout << "請輸入姓名:" << endl;
?? ??? ?cin >> name;
?? ??? ?cout << "請輸入電話:" << endl;
?? ??? ?cin >> number;
?? ??? ?cout << "請輸入郵箱:" << endl;
?? ??? ?cin >> Email;
?? ??? ?cout << "請輸入地址:" << endl;
?? ??? ?cin >> address;
?? ??? ?p->personarr[p->people_num].name = name;
?? ??? ?p->personarr[p->people_num].number = number;
?? ??? ?p->personarr[p->people_num].Email = Email;
?? ??? ?p->personarr[p->people_num].address = address;
?? ??? ?
?? ??? ?p->people_num++;
?? ??? ?cout << "添加成功!" << endl;
?? ?}
}

5.刪除聯(lián)系人

判斷聯(lián)系人是否存在

int existperson(struct contacts* p,string name) {
?? ?
?? ?for (int i = 0; i < p->people_num; i++) {
?? ??? ?if ( p->personarr[i].name == name ) {
?? ??? ??? ?return i;
?? ??? ?}
?? ?}
?? ?return -1;
}

若存在,獲取聯(lián)系人在通訊錄位置,將position后面的都往前移動一個位置,覆蓋之前的值

//刪除聯(lián)系人
void delperson(struct contacts* p,int position) {
?? ?while (position < (p->people_num)) {
?? ??? ?p->personarr[position] = p->personarr[position + 1];
?? ??? ?position++;
?? ?}
?? ?p->people_num--;
?? ?cout << "刪除成功!" << endl;
}

6.修改

檢查要修改聯(lián)系人是否存在,并獲取當前位置

void modifyperson(struct contacts* p, int position) {
?? ?string ?number, Email, address;
?? ?
?? ?cout << "請輸入修改電話:" << endl;
?? ?cin >> number;
?? ?cout << "請輸入修改郵箱:" << endl;
?? ?cin >> Email;
?? ?cout << "請輸入修改地址:" << endl;
?? ?cin >> address;
?
?? ?p->personarr[position].number = number;
?? ?p->personarr[position].Email = Email;
?? ?p->personarr[position].address = address;
?? ?cout << "修改成功!" << endl;
}

7.查找

void searchperson(struct contacts* p, int position) {
?? ?cout << "姓名:" << p->personarr[position].name << " ? ?"
?? ??? ?<< "電話:" << p->personarr[position].number << " ? ?"
?? ??? ?<< "郵箱:" << p->personarr[position].Email << " ? ?"
?? ??? ?<< "地址:" << p->personarr[position].address << " ? ?";
}

8.顯示通訊錄

void showcontact(struct contacts* p) {
?? ?for (int i = 0; i < (p->people_num); i++) {
?? ??? ?cout <<"姓名:" << p->personarr[i].name << " ? ?"
?? ??? ??? ?<<"電話:" << p->personarr[i].number << " ? ?"
?? ??? ??? ?<<"郵箱:" << p->personarr[i].Email << " ? ?"
?? ??? ??? ?<<"地址:" << p->personarr[i].address << " ? ?"<< endl;
?
?? ?}?? ??? ?
}

9.清空通訊錄

void cleancontact(struct contacts* p) {
?? ?p->people_num = 0;
?? ?cout << "已清空!" << endl;
}

全部代碼

#include<iostream>
using namespace std;
#define MAX 200?
?
//1.菜單欄顯示
void menu() {
?
?? ?cout << "——————————————————" << endl;
?? ?cout << "*********** 1.添加聯(lián)系人 ***********" << endl;
?? ?cout << "*********** 2.刪除聯(lián)系人 ***********" << endl;
?? ?cout << "*********** 3.修改聯(lián)系人 ***********" << endl;
?? ?cout << "*********** 4.查找聯(lián)系人 ***********" << endl;
?? ?cout << "*********** 5.顯示通訊錄 ***********" << endl;
?? ?cout << "*********** 6.清空聯(lián)系人 ***********" << endl;
?? ?cout << "*********** 0.退出通訊錄 ***********" << endl;
?? ?cout << "——————————————————" << endl;
}
?
//2.定義結構體
//2.1定義聯(lián)系人結構體
//姓名、電話號碼、郵箱、地址
struct person {
?? ?string name;
?? ?string number;
?? ?string Email;
?? ?string address;
};
//2.2 定義通訊錄結構體
struct contacts {
?? ?int people_num;
?? ?struct person personarr[MAX];//子結構體:聯(lián)系人信息
};
?
//3.添加聯(lián)系人
void addperson(struct contacts* p) {
?? ?if (p->people_num == MAX ) {
?? ??? ?cout << "通訊錄已滿" << endl;
?? ?}
?? ?else {//添加聯(lián)系人信息
?? ??? ?string name, number, Email, address;
?? ??? ?cout << "請輸入姓名:" << endl;
?? ??? ?cin >> name;
?? ??? ?cout << "請輸入電話:" << endl;
?? ??? ?cin >> number;
?? ??? ?cout << "請輸入郵箱:" << endl;
?? ??? ?cin >> Email;
?? ??? ?cout << "請輸入地址:" << endl;
?? ??? ?cin >> address;
?? ??? ?p->personarr[p->people_num].name = name;
?? ??? ?p->personarr[p->people_num].number = number;
?? ??? ?p->personarr[p->people_num].Email = Email;
?? ??? ?p->personarr[p->people_num].address = address;
?? ??? ?
?? ??? ?p->people_num++;
?? ??? ?cout << "添加成功!" << endl;
?? ?}
}
//4.刪除聯(lián)系人
//4.1檢測聯(lián)系人是否存在
int existperson(struct contacts* p,string name) {
?? ?
?? ?for (int i = 0; i < p->people_num; i++) {
?? ??? ?if ( p->personarr[i].name == name ) {
?? ??? ??? ?return i;
?? ??? ?}
?? ?}
?? ?return -1;
}
//刪除聯(lián)系人
void delperson(struct contacts* p,int position) {
?? ?while (position < (p->people_num)) {
?? ??? ?p->personarr[position] = p->personarr[position + 1];
?? ??? ?position++;
?? ?}
?? ?p->people_num--;
?? ?cout << "刪除成功!" << endl;
}
//5.修改聯(lián)系人
void modifyperson(struct contacts* p, int position) {
?? ?string ?number, Email, address;
?? ?
?? ?cout << "請輸入修改電話:" << endl;
?? ?cin >> number;
?? ?cout << "請輸入修改郵箱:" << endl;
?? ?cin >> Email;
?? ?cout << "請輸入修改地址:" << endl;
?? ?cin >> address;
?
?? ?p->personarr[position].number = number;
?? ?p->personarr[position].Email = Email;
?? ?p->personarr[position].address = address;
?? ?cout << "修改成功!" << endl;
}
?
//6.查找聯(lián)系人
void searchperson(struct contacts* p, int position) {
?? ?cout << "姓名:" << p->personarr[position].name << " ? ?"
?? ??? ?<< "電話:" << p->personarr[position].number << " ? ?"
?? ??? ?<< "郵箱:" << p->personarr[position].Email << " ? ?"
?? ??? ?<< "地址:" << p->personarr[position].address << " ? ?";
}
?
//7.顯示通訊錄
void showcontact(struct contacts* p) {
?? ?for (int i = 0; i < (p->people_num); i++) {
?? ??? ?cout <<"姓名:" << p->personarr[i].name << " ? ?"
?? ??? ??? ?<<"電話:" << p->personarr[i].number << " ? ?"
?? ??? ??? ?<<"郵箱:" << p->personarr[i].Email << " ? ?"
?? ??? ??? ?<<"地址:" << p->personarr[i].address << " ? ?"<< endl;
?
?? ?}?? ??? ?
}
//8.清空聯(lián)系人
void cleancontact(struct contacts* p) {
?? ?p->people_num = 0;
?? ?cout << "已清空!" << endl;
}
?
int main() {
?? ?//創(chuàng)建通訊錄結構體變量
?? ?struct contacts c;
?? ?//初始化通訊錄當前聯(lián)系人個數(shù)
?? ?c.people_num = 0;
?? ?int select = 0;
?? ?string name;
?? ?while (1) {
?? ??? ?menu();
?? ??? ?cin >> select;
?? ??? ?switch (select) {
?? ??? ??? ?case 1:// 添加聯(lián)系人
?? ??? ??? ??? ?addperson(&c);
?? ??? ??? ??? ?system("pause");
?? ??? ??? ??? ?break;
?
?? ??? ??? ?case 2:// 刪除聯(lián)系人
?? ?
?? ??? ??? ??? ?cout << "請輸入刪除聯(lián)系人的姓名:";
?? ??? ??? ??? ?cin >> name;
?? ??? ??? ??? ?if (existperson(&c,name)==-1) {
?? ??? ??? ??? ??? ?cout << "該聯(lián)系人不存在!";
?? ??? ??? ??? ?}
?? ??? ??? ??? ?else{
?? ??? ??? ??? ??? ?delperson(&c, existperson(&c, name));
?? ??? ??? ??? ?}
?? ??? ??? ??? ?
?? ??? ??? ??? ?system("pause");
?? ??? ??? ??? ?break;
?
?? ??? ??? ?case 3:// 修改聯(lián)系人
?? ??? ??? ?
?? ??? ??? ??? ?cout << "請輸入要修改聯(lián)系人的姓名:";
?? ??? ??? ??? ?cin >> name;
?? ??? ??? ??? ?if (existperson(&c,name) == -1) {
?? ??? ??? ??? ??? ?cout << "該聯(lián)系人不存在!";
?? ??? ??? ??? ?}
?? ??? ??? ??? ?else {
?? ??? ??? ??? ??? ?modifyperson(&c, existperson(&c, name));
?? ??? ??? ??? ?}
?? ??? ??? ??? ?
?? ??? ??? ??? ?system("pause");
?? ??? ??? ??? ?break;
?
?? ??? ??? ?case 4:// 查找聯(lián)系人
?? ??? ??? ??? ?
?? ??? ??? ??? ?cout << "請輸入查找聯(lián)系人的姓名:";
?? ??? ??? ??? ?cin >> name;
?? ??? ??? ??? ?if (existperson(&c,name) == -1) {
?? ??? ??? ??? ??? ?cout << "該聯(lián)系人不存在!";
?? ??? ??? ??? ?}
?? ??? ??? ??? ?else {
?? ??? ??? ??? ??? ?searchperson(&c, existperson(&c, name));
?? ??? ??? ??? ?}
?? ??? ??? ??? ?
?? ??? ??? ??? ?system("pause");
?? ??? ??? ??? ?break;
?
?? ??? ??? ?case 5:// 顯示通訊錄?
?? ??? ??? ??? ?showcontact(&c);
?? ??? ??? ??? ?system("pause");?
?? ??? ??? ??? ?break;
?? ??? ??? ?case 6:// 清空聯(lián)系人
?? ??? ??? ??? ?cleancontact(&c);
?? ??? ??? ??? ?system("pause");
?? ??? ??? ??? ?break;
?? ??? ??? ?case 0://退出通訊錄
?? ??? ??? ??? ?cout << "歡迎下次使用" << endl;
?? ??? ??? ??? ?system("pause");//暫停批文件的處理
?? ??? ??? ??? ?return 0;
?? ??? ??? ??? ?break;
?? ??? ?}
?? ??? ?system("cls");//清屏
?? ?}
?? ?
?? ?system("pause");
?? ?return 0;
}

以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支持腳本之家。

相關文章

  • 盤點分析C語言中少見卻強大的字符串函數(shù)

    盤點分析C語言中少見卻強大的字符串函數(shù)

    這篇文章主要為大家盤點及分析C語言中少見卻強大的字符串函數(shù),有需要的朋友可以借鑒參考下,希望能夠有所幫助,祝大家多多進步
    2022-02-02
  • 詳解C語言中的字符串拼接(堆與棧)

    詳解C語言中的字符串拼接(堆與棧)

    這篇文章主要介紹了C語言中字符串拼接(堆與棧)的相關資料,文中通過一段示例代碼詳細介紹了關于C語言中的字符串拼接問題,有需要的朋友可以參考借鑒,下面來一起看看吧。
    2017-01-01
  • 一般函數(shù)指針和類的成員函數(shù)指針深入解析

    一般函數(shù)指針和類的成員函數(shù)指針深入解析

    以下是對一般函數(shù)指針和類的成員函數(shù)指針進行了介紹。需要的朋友可以過來參考下
    2013-08-08
  • C++連接mysql數(shù)據庫的兩種方法小結

    C++連接mysql數(shù)據庫的兩種方法小結

    這篇文章主要介紹了C++連接mysql數(shù)據庫的兩種方法小結,文中通過示例代碼介紹的非常詳細,對大家的學習或者工作具有一定的參考學習價值,需要的朋友們下面隨著小編來一起學習學習吧
    2020-04-04
  • 最新評論

    昌江| 汤阴县| 清镇市| 双辽市| 临沭县| 临洮县| 开原市| 财经| 江阴市| 南涧| 满洲里市| 神农架林区| 海南省| 遵义市| 越西县| 通河县| 晋城| 临清市| 嘉祥县| 菏泽市| 牟定县| 龙游县| 云南省| 渑池县| 琼结县| 澜沧| 贡山| 保定市| 闸北区| 灵石县| 辽宁省| 北宁市| 游戏| 威宁| 海盐县| 东丰县| 嘉义县| 彩票| 南部县| 东方市| 淄博市|