c語言:一元多項式簡單的計算器 期末大做業

#include<stdio.h> #include<stdlib.h> #include<conio.h> typedef struct Polynomial {     int coef;//係數     int expn;//指數     struct Polynomial *next; }*Poly, Node; Poly Creat()                          
相關文章
相關標籤/搜索