针对下面常量举出例子?

针对五种常量 分别举出5个例子。(如,整型常量:356 -92 0 25438 -523)

int型 1 2 3 4 5
double 型 0.1 1.1 2.1 3.1 4.1
char 型 'a' 'b' 'c' 'd' 'e'
string型 "a" "b" "c" "d" "e"
枚举型enum rainbow = {Violet, Indigo, Blue, Green, Yellow, Orange, Red}

啥意思?