state

DOCX 3 pages 20.4 KB Free download

Page preview (3 pages)

Scroll down 👇
1 / 3
вопрос 1 есть класс state, который представляет государство: 1 2 3 4 5 class state { public decimal population { get; set; } // население public decimal area { get; set; } // территория } добавьте в класс оператор сложения, который бы позволял объединять государства. а также операторы сравнения для сравнения государств по какому-нибудь критерию (например, по населению или территории). наподобие 1 2 3 4 state state1 = new state(); state state2 = new state(); state state3 = state1 + state2; bool isgreater = state1 > state2; ответ возможная реализация: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 class state { public decimal population { get; set; } // население public decimal area { get; set; } // территория public static state operator +(state s1, state s2) { return new state { population = s1.population …
2 / 3
d bread, butter butter) { return new sandwich { weight = bread.weight + butter.weight }; } } // масло class butter { public int weight { get; set; } // масса } // бутерброт class sandwich { public int weight { get; set; } // масса }
3 / 3
state - Page 3

Want to read more?

Download all 3 pages for free via Telegram.

Download full file

About "state"

вопрос 1 есть класс state, который представляет государство: 1 2 3 4 5 class state { public decimal population { get; set; } // население public decimal area { get; set; } // территория } добавьте в класс оператор сложения, который бы позволял объединять государства. а также операторы сравнения для сравнения государств по какому-нибудь критерию (например, по населению или территории). наподобие 1 2 3 4 state state1 = new state(); state state2 = new state(); state state3 = state1 + state2; bool isgreater = state1 > state2; ответ возможная реализация: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 class state { public decimal population { …

This file contains 3 pages in DOCX format (20.4 KB). To download "state", click the Telegram button on the left.

Tags: state DOCX 3 pages Free download Telegram