0
respostas

minha soluçã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 } }
};

Console.WriteLine("Vendas de carros de luxo\n");

Console.Write("Digite o Nome do carro para saber quantas únidades foram vendidas no ano\n"
            + "Nome do carros: ");
string nomeCarro = Console.ReadLine()!;
if (vendasCarros.ContainsKey(nomeCarro))
{
    List<int> vendas = vendasCarros[nomeCarro];
    int totalVendas = 0;
    foreach (int venda in vendas)
    {
        totalVendas += venda;
    }
    Console.WriteLine($"Nome do carro..............: {nomeCarro}\n" +
                      $"Total de Unidades vendidas.: {totalVendas} unidades.");
}
else
{
    Console.WriteLine($"O carro {nomeCarro} não foi encontrado.");
}