Подскажете правильно ли я написала Class? - C#
Формулировка задачи:
class Sheher{ public string ad; public float sahe; public string Ad { get; set; } public float Sahe { get; set; } public Sheher(string ad, float sahe) { this.Ad = ad; this.Sahe= sahe; } } class Program { static void Main(string[] args) { Sheher sahe = new Sheher(); Sheher [] shr = new Sheher [11]; shr[0] = new Sheher("Baki", 2130); shr[1] = new Sheher("Gence", 110); shr[2] = new Sheher("Sumqayit", 83); shr[3] = new Sheher("Mingechevir", 130); shr[4] = new Sheher("Shirvan", 30); shr[5] = new Sheher("Sheki", 4); shr[6] = new Sheher("Xankendi", 8); shr[7] = new Sheher("Yevlax", 7); shr[8] = new Sheher("Lenkeran", 5); shr[9] = new Sheher("Naftalan", 2); shr[10] = new Sheher("Shusha", 4); foreach (Sheher a in shr) { Console.WriteLine("{0},{1}", a.ad, a.sahe+"kv.km"); } } }
Решение задачи: «Подскажете правильно ли я написала Class?»
textual
Листинг программы
Sheher sahe = new Sheher();
ИИ поможет Вам:
- решить любую задачу по программированию
- объяснить код
- расставить комментарии в коде
- и т.д