其他分享
首页 > 其他分享> > 天下风云出我辈,一入江湖岁月催

天下风云出我辈,一入江湖岁月催

作者:互联网

#include <iostream>
#include <vector>
#include <map>
#include <string>
#include <algorithm>
using namespace std;

struct person {
    char id[18];
    char name[20];
    char address[60];
    char phone_num[14];
};

void person_insert(struct person *p, int N);

struct person *person_search(char *id);

int main() {
    int N;
    cout << "请输入插入信息条数:" << endl;
    cin >> N;
    person* p = new person[N];
    delete[] p;
    return 0;
}

 

标签:struct,一入,int,char,person,我辈,风云,include,id
来源: https://www.cnblogs.com/Junkman/p/16296912.html