105.多项式乘法
#include <stdio.h>#include <math.h>#define MAX 50/* 下面的两个数组可以根据具体要求解的多项式来决定其值*/static double p[6]={4,-6,3,1,-1,5}; /*表示多项式4x^5 - 6x^4 + 3x^3 + x^2 - x + 5 */static double q[4]={3,2,-5,1}; /*表示多项式3x^3 + 2x^2 - 5x + 1 */sta