
c/c++
cx_mors
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
实现m*n型数列相加(重载运算符)
#includeusing namespace std;class Array{int *arr;int a,b;public:Array(int x,int y){arr=new int[x*y];a=x;b=y;}~Array(){}//?delete []arr;输出时乱码 friend Array operator+(Array &a原创 2015-11-22 13:19:38 · 632 阅读 · 0 评论 -
学生成绩管理系统课程设计(C语言,链表实现)
#include#include#include#include#includestruct stu{char num[11];char name[8];int maths;int physics;int english;int circuit;int computer;float av原创 2015-11-22 13:18:07 · 16906 阅读 · 2 评论