📄 polyn.h
字号:
#ifndef _POLYN
#define _POLYN
#define MAX 256
#define OVERFLOW -1
#include<stdio.h>
#include<math.h>
#include<string.h>
#include<stdlib.h>
typedef struct node
{ int coef_numerator; //系数分子
int coef_denominator; //系数分母
int exp; //指数
struct node *next;
}Node,*Linklist;
#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -