#include <iostream>
using namespace std;

struct Person{
      string m_name;
      int m_age;
      int m_sex;
      string m_phone;
      string m_address;
};
struct Addressbooks{
      Person personarr[1000];
      int S_size;
};
//显示菜单
void showMenu(){
      cout<<"**************"<<endl;
      cout<<"*1.添加用户****\n";
      cout<<"*2.显示用户****\n";
      cout<<"*3.删除用户****\n";
      cout<<"*4.查找指定用户*\n";
      cout<<"*5.删除指定用户*\n";
      cout<<"*6.清空用户****\n";
      cout<<"*0.退出系统****\n";
      cout<<"**************"<<endl;

}

int main() {
	// your code goes here
    showMenu();
	return 0;
}