多項式相加的C語言實現

#include <stdio.h> #include <stdlib.h> //定義結構體類型 typedef struct Node{ float xishu; //定義係數爲浮點數 int zhishu; //定義指數爲整型 struct Node *Next; }Node; typedef struct Node* PNode; //定義指針類
相關文章
相關標籤/搜索