摘要: 一元多项式求和(c语言实现) ​ 把任意给定的两个一元多项式P(x) ,Q(x) 输入计算机,计算它们的和并输出计算结果。 #include <stdio.h> #include <malloc.h> typedef struct LNode { int coef; // 系数 int exp; / 阅读全文
posted @ 2020-10-18 12:36 DawnCoody 阅读(2555) 评论(0) 推荐(0)