摘要:
#include <iostream> #include "MachinePets.h" #include "Petcats.h" #include "Petdogs.h" using namespace std; void play(MachinePets *m){ cout<<m->getnic 阅读全文
摘要:
// 类graph的实现 #include "graph.h" #include using namespace std; // 带参数的构造函数的实现 Graph::Graph(char ch, int n): symbol(ch), size(n) { } // 成员函数draw()的实现 // 功能:绘制size行,显示字符为symbol的指定图形样式 void Grap... 阅读全文
摘要:
#include #include using namespace std; class complex{ public: complex(double real1=0,double imaginary1=0); complex(complex &t); void add(complex a); void show();... 阅读全文