Enumerations and Structuresenum 列舉enum Rank: Int { case ace = 1 case two, three, four, five, six, seven, eight, nine, ten//會自己給rawValue two = 2, three = 3, ...//Use the rawValue property to access the raw value of an enumeration case. case jack, queen, king func simpleDescription() -> String { switch self...