在C++中,下列哪个是定义常量的正确方式?
#define int MAX 100
const int MAX = 100
static const int MAX = 100
int MAX = 100