課上乙個小小的通訊錄管理系統

2021-08-19 18:27:42 字數 1208 閱讀 2911

names=

phones=

print('歡迎登陸通訊錄管理系統')

while(true):

print('*****==通訊錄管理系統*****== ')

print('1.增加姓名和手機')

print('2.刪除姓名')

print('3.修改手機')

print('4.查詢所有使用者')

print('5.根據姓名查詢手機號')

print('6.退出')

print('********************====')

i=int(input('請選擇:'))

if(i==1):

name=input('請輸入姓名:')

while phone in phones:

print('錄入成功')

elif i==2:

name = input('請輸入姓名:')

if name in names:

index=names.index(name)

# names.pop(index)

# phones.pop(index)

del names[index]

del phones[index]

print('刪除成功')

else:

print('您輸入的名字不存在')

elif i==4:

for i in range(names.__len__()):

print(names[i],phones[i])

print('輸出完畢')

elif i==3:

if phone in phones:

while new_phone in phones:

index=phones.index(phone)

phones[index]=new_phone

print('更新成功')

else:

print('您輸入的**不存在')

elif i == 5:

name = input('請輸入姓名:')

if name in names:

index = names.index(name)

else:

print('您輸入的名字不存在')

elif i == 6:

print('謝謝使用')

break

建立的乙個通訊錄管理系統

建立乙個管理通訊錄程式 include include include int count 0 char name 100 struct tx1 新建聯絡人 void new struct tx1 frients scanf s f.name scanf d f.num scanf s f.tele...

實現乙個通訊錄

通訊錄可以用來儲存1000個人的資訊,每個人的資訊包括 姓名 性別 年齡 住址 提供方法 1.新增聯絡人資訊 2.刪除指定聯絡人資訊 3.查詢指定聯絡人資訊 4.修改指定聯絡人資訊 5.顯示所有聯絡人資訊 6.清空所有聯絡人 標頭檔案 contacts.h ifndef contacts h def...

實現乙個通訊錄

1.2.實現乙個通訊錄 3.通訊錄可以用來儲存 1000 個人的資訊,每個人的資訊包括 4.姓名 性別 年齡 住址 5.6.提供方法 7.1.新增聯絡人資訊 8.2.刪除指定聯絡人資訊 9.3.查詢指定聯絡人資訊 10.4.修改指定聯絡人資訊 11.5.顯示所有聯絡人資訊 12.6.清空所有聯絡人 ...