随笔分类 -  c++程序设计

写一个二维数组类 Array2
摘要:#include #include using namespace std;class Array2{private: int m, n; int** p;public: Array2(int _m,int _n) { m = _m; n = _... 阅读全文

posted @ 2015-10-06 15:35 张茂晨 阅读(712) 评论(0) 推荐(0)

简单的学生信息处理程序实现
摘要:#define _CRT_SECURE_NO_WARNINGS#include #include #include using namespace std;class student{private : string name; unsigned int age; string I... 阅读全文

posted @ 2015-09-30 12:47 张茂晨 阅读(457) 评论(0) 推荐(0)