Crie uma função que recebe um número e retorna um array de três elementos contendo a metade, um quarto e um oitavo desse número, nessa ordem.
Program.HalfQuarterEighth(6) ➞ new[] { 3.0, 1.5, 0.75 }
Program.HalfQuarterEighth(22) ➞ new[] { 11.0, 5.5, 2.75 }
Program.HalfQuarterEighth(25) ➞ new[] { 12.5, 6.25, 3.125 }