розробити додаток у якому порівнювалися населення трьох столиць з різних країн причому країна позначається простором імен а місто класом в даному просторі
с#
Ответы
Ответ:
using System;
class Country
{
public string Name { get; set; }
public int Population { get; set; }
public Country(string name, int population)
{
Name = name;
Population = population;
}
}
class City
{
public string Name { get; set; }
public int Population { get; set; }
public City(string name, int population)
{
Name = name;
Population = population;
}
}
class Program
{
static void Main()
{
// Створюємо об'єкти для трьох столиць
Country ukraine = new Country("Ukraine", 42000000);
Country usa = new Country("USA", 331000000);
Country japan = new Country("Japan", 126000000);
City kyiv = new City("Kyiv", 2800000);
City washington = new City("Washington, D.C.", 705000);
City tokyo = new City("Tokyo", 13960000);
// Виводимо інформацію
Console.WriteLine($"Population of {ukraine.Name}: {ukraine.Population} people");
Console.WriteLine($"Population of {usa.Name}: {usa.Population} people");
Console.WriteLine($"Population of {japan.Name}: {japan.Population} people");
Console.WriteLine($"Population of {kyiv.Name}: {kyiv.Population} people");
Console.WriteLine($"Population of {washington.Name}: {washington.Population} people");
Console.WriteLine($"Population of {tokyo.Name}: {tokyo.Population} people");
}
Объяснение: