- 32
- 0
- 约1.38万字
- 约 18页
- 2019-07-05 发布于江西
- 举报
一元多项式各种运算
本程序可完成一元多项式的加,减,乘,积分,微分运算
输入可按习惯书写形式输入各项,输出按指数降序
//头文件 :
#includewindows.h
#includemmsystem.h
#includetime.h
#includeiostream.h
#includestring.h
#includeiostream.h
#includeiomanip.h
#includectype.h
#includemalloc.h
#includelimits.h
#includestdio.h
#includestdlib.h
#includeio.h
#includemath.h
#includesys/timeb.h
#includestdarg.h
#define TRUE 1
#define FALSE 0
#define OK 1
#define ERROR 0
typedef int status;
typedef float type;
typedef int fuhaosign;
结构体类型定义:
typedef struct list
{
type data;
int zhi;
struct list* next;
}list;
typedef struct
原创力文档

文档评论(0)