04-2 可变长参数
// 变长参数只能有一个
// 变长参数不一定放在最后
func mean( numbers: Double ... ) -> Double{
// 将变长参数当做一个数组看待
for number in numbers{