摘要: // 类graph的实现 #include "graph.h" #include using namespace std; // 带参数的构造函数的实现 Graph::Graph(char ch, int n): symbol(ch), size(n) { } // 成员函数draw()的实现 // 功能:绘制size行,显示字符为symbol的指定图形样式 // ... 阅读全文
posted @ 2018-04-23 22:40 卡斯兰娜樱 阅读(130) 评论(2) 推荐(0) 编辑