time limit: 1000ms
memory limit: 65536kb
submit
statistic
problem description
請定義具有red, orange, yellow, green, blue, violet六種顏色的列舉型別color,根據輸入的顏色名稱,輸出以下六種植物花朵的顏色:
rose(red), poppies(orange), sunflower(yellow), grass(green), bluebells(blue), violets(violet)。如果輸入的顏色名稱不在列舉型別color中,例如輸入purple,請輸出i don't know about the color purple.
input
輸入資料有多行,每行有乙個字串代表顏色名稱,顏色名稱最多30個字元,直到檔案結束為止。
output
輸出對應顏色的植物名稱,例如:bluebells are blue. 如果輸入的顏色名稱不在列舉型別color中,例如purple, 請輸出i don't know about the color purple.
example input
blueyellow
purple
example output
bluebells are blue.sunflower are yellow.
i don't know about the color purple.
hint
請用列舉型別實現。
author
lxh
01
#include
02
#include
03
#include
04
enum
colork;
05
int
main()
06
14
else
if
(
strcmp
(str,
"orange"
)==0)
15
18
else
if
(
strcmp
(str,
"yellow"
)==0)
19
22
else
if
(
strcmp
(str,
"green"
)==0)
23
26
else
if
(
strcmp
(str,
"violet"
)==0)
27
30
else
if
(
strcmp
(str,
"blue"
)==0)
31
34
else
35
k=no;
36
switch
(k)
37
59
}
60
return
0;
61
}
簡單列舉型別 植物與顏色
time limit 1000ms memory limit 65536kb problem description 請定義具有red,orange,yellow,green,blue,violet六種顏色的列舉型別color,根據輸入的顏色名稱,輸出以下六種植物花朵的顏色 rose red pop...
簡單列舉型別 植物與顏色
problem description 請定義具有red,orange,yellow,green,blue,violet六種顏色的列舉型別color,根據輸入的顏色名稱,輸出以下六種植物花朵的顏色 rose red poppies orange sunflower yellow grass gree...
簡單列舉型別 植物與顏色
簡單列舉型別 植物與顏色 請定義具有red,orange,yellow,green,blue,violet六種顏色的列舉型別color,根據輸入的顏色名稱,輸出以下六種植物花朵的顏色 rose red poppies orange sunflower yellow grass green blueb...