1. 首页
  2. 网络技术
  3. 综合布线
  4. 多项式加减乘除法

多项式加减乘除法

上传者: 2020-08-19 05:36:25上传 TXT文件 4.01KB 热度 17次
#include #include #include #include using namespace std; #define TRUE 1 #define FALSE 0 #define OK 1 #define ERROR 0 #define INFEASIBLE -1 #define OVERFLOW -2 typedef int Status; typedef struct { float coef; int expn; } term,ElemType; typedef struct polynoma
用户评论