#include <iostream>
using namespace std;
//宏定义 没'='号 无需';'号
#define MAXNUM 10
//带参数的宏定义
#define CUBE(x) (x*x*x)
//条件编译
//#if 如果
//#elif 如果
//#endif 结束编译
//#ifdef 如果标示符有定义
//#ifndef 如果标示符号没有定义
#define SIZE 100
#ifndef SIZE
#define SIZE 10
#endif
#define DEBUG 1
//必须将宏体用()括起来
#define INT3(x) (((x)%3==0)?true:false)
void main()
{
cout<<MAXNUM<<endl;
cout<<CUBE(MAXNUM)<<endl;
cout<<INT3(3)<<endl;
cout<<SIZE<<endl;
}