编写程序实现多项式求和
方法一:#include<iostream.h>#include<stdio.h>#include<stdlib.h>#define N 30struct Poly {float coef; //系
编写程序实现多项式求和