1
resposta

[Testes] Resolução.

Dictionary<string, List<int>> vendasCarros = new Dictionary<string, List<int>> {
    { "Bugatti Veyron", new List<int> { 10, 15, 12, 8, 5 } },
    { "Koenigsegg Agera RS", new List<int> { 2, 3, 5, 6, 7 } },
    { "Lamborghini Aventador", new List<int> { 20, 18, 22, 24, 16 } },
    { "Pagani Huayra", new List<int> { 4, 5, 6, 5, 4 } },
    { "Ferrari LaFerrari", new List<int> { 7, 6, 5, 8, 10 } }
};

void CalcularMediaDosCarros()
{
    Console.WriteLine("Média dos Carros: ");
    foreach(string carro in vendasCarros.Keys)
    {
        var media = vendasCarros[carro].Average();
        Console.WriteLine($"\n{carro}: {media}");
    }
};


CalcularMediaDosCarros();
1 resposta

Olá, Ronald! Bom dia!

Obrigado por compartilhar sua implementação, e ai gostando da nova formação? Esperamos que esteja curtindo. Continue focado nos estudos!

Qualquer dúvida nos chame aqui no fórum ou discord!

Bons estudos!