正解,学习
正确,学习了
在宏定义中,对变量的应用最好加上括号,这样就不容易出现错误了,#define N 2#define M N+1#define NUM 2*M+1改为:#define N 2#define M (N)+1#define NUM 2*(M)+1