15
1
using System;
2
using System.Collections.Generic;
3
4
public class Program
5
{
6
public static void Main()
7
{
8
var citiesOfCountry = new Dictionary<string, string>() {{"UK", "London, Manchester, Birmingham"}, {"USA", "Chicago, New York, Washington"}, {"India", "Mumbai, New Delhi, Pune"}};
9
10
foreach (var city in citiesOfCountry)
11
{
12
Console.WriteLine("{0}, {1}", city.Key, city.Value);
13
}
14
}
15
}
Cached Result
Ingrese Temperatura 1
>