C++ 第一个实战项目:通讯录系统管理
摘要:
1 #include<iostream> 2 #include<string> 3 using namespace std; 4 # define MAX 1000 5 6 struct Person 7 { 8 string m_Name; 9 int m_Sex; 10 int m_Age; 1 阅读全文
posted @ 2021-02-01 19:39 Hrunjie 阅读(63) 评论(0) 推荐(0) 编辑