#define N 2 #define M N+1 #define NUM (M+1)*M
main() { int i; for(i=1;i<=NUM;i++) printf("%d\n",i); getch(); } 在以上题中的M应是3。为(M+1)*M不是12而是9???????请帮助!