多项式相加的C语言实现

#include <stdio.h> #include <stdlib.h> //定义结构体类型 typedef struct Node{ float xishu; //定义系数为浮点数 int zhishu; //定义指数为整型 struct Node *Next; }Node; typedef struct Node* PNode; //定义指针类
相关文章
相关标签/搜索