C++實驗三

part2 graph.h #ifndef GRAPH_H #define GRAPH_H // 類Graph的聲明 class Graph { public: Graph(char ch, int n); // 帶有參數的構造函數 void draw(); // 繪製圖形 private: char symbol; int size; }; #endif main.cpp #include <i
相關文章
相關標籤/搜索