包含头文件,实现文件,测试文件 {//多项式的项 public: int coef;//多项式的系数 int exp;//多项式的指数 term(int c=0,int e=0):coef(c),exp(e){}; }; class PolyArith