using System;
using System.Collections.Generic;
class Program
{
static void Main()
{
Dictionary<string, string> countryCapitals = new Dictionary<string, string>();
countryCapitals["Россия"] = "Москва";
countryCapitals["США"] = "Вашингтон";
countryCapitals["Франция"] = "Париж";
countryCapitals["Германия"] = "Берлин";
countryCapitals["Япония"] = "Токио";
countryCapitals["Великобритания"] = "Лондон";
countryCapitals["Китай"] = "Пекин";
countryCapitals["Индия"] = "Дели";
countryCapitals["Бразилия"] = "Бразилиа";
bool found = false;
foreach (var item in countryCapitals)
{
if (item.Key.StartsWith("A") && item.Key.EndsWith("A"))
{
Console.WriteLine($"Страна: {item.Key}, Столица: {item.Value}");
found = true;
break;
}
}
if (!found)
{
Console.WriteLine("Город отсутствует.");
}
}
}
Dictionary<string, string> YourDic = new Dictionary<string, string>();
//Fill the dic here
bool CityExists = YourDic.Count(x => x.Value.ToUpper().StartsWith('A') && x.Value.ToUpper().EndsWith('A')) > 0;
//Output the result here
начинающийся и заканчивающийся на букву «A», вывести
соответствующее сообщение на экран, иначе вывести сообщение «Город
отсутствует». Помогите пожалуйста