Реализовать класс использованием интерфейсов - C#

Узнай цену своей работы

Формулировка задачи:

Создайте консольное приложение. Реализуйте класс из задания 2 с использованием интерфейсов. Помогите с этой задачкой на си шарпе. Вот класс из задания 2
Листинг программы
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace ConsoleApplication1
  6. {
  7. class Traid : System.Object
  8. {
  9. protected int first, second, third, другое;
  10. public Traid(int first, int second, int third, int другое)
  11. {
  12. this.first = first;
  13. this.second = second;
  14. this.third = third;
  15. this.другое = 2;
  16. }
  17. public Traid()
  18. {
  19. this.first = 60;
  20. this.second = 59;
  21. this.third = 1;
  22. this.другое = 4;
  23. }
  24. public override int GetHashCode()
  25. {
  26. return base.GetHashCode();
  27. }
  28. public override bool Equals(object obj)
  29. {
  30. Traid temp = (Traid)obj;
  31. if (temp.first == this.first && temp.second == this.second && temp.third == this.third && temp.другое == this.другое)
  32. {
  33. return true;
  34. }
  35. else return false;
  36. }
  37. public virtual void Print()
  38. {
  39. Console.WriteLine("{0},{1},{2},{3}", first, second, third, другое);
  40. }
  41. }
  42. class TIME : Traid
  43. {
  44. int часы;
  45. int минуты;
  46. int секунды;
  47. public TIME(int часы, int минуты, int секунды, int first, int second, int third, int другое)
  48. : base(first, second, third, другое) //конструктор базового класса
  49. {
  50. this.часы = часы;
  51. this.минуты = минуты;
  52. this.секунды = секунды;
  53. }
  54. public override void Print()
  55. {
  56. Console.WriteLine("{0}, {1}, {2}, {3}, {4}", first, second, third, часы, минуты, секунды, другое);
  57. }
  58. public override bool Equals(object obj)
  59. {
  60. TIME temp = (TIME)obj;
  61. if (temp.часы == this.часы && temp.минуты == this.минуты && temp.секунды == this.секунды && temp.first == this.first && temp.second == this.second && temp.third == this.third && temp.другое == this.другое)
  62. {
  63. return true;
  64. }
  65. else return false;
  66. }
  67. public override int GetHashCode()
  68. {
  69. return base.GetHashCode();
  70. }
  71. }
  72.  
  73. class Program
  74. {
  75. static void Main(string[] args)
  76. {
  77. Traid[] obj = new Traid[3];
  78. obj[0] = new Traid();
  79. int h, m, s, per_ch, vtor_ch, trete_ch;
  80. Console.WriteLine("Введите часы");
  81. h = Convert.ToInt16(Console.ReadLine());
  82. Console.WriteLine("Введите минуты");
  83. m = Convert.ToInt16(Console.ReadLine());
  84. Console.WriteLine("Введите секунды");
  85. s = Convert.ToInt16(Console.ReadLine());
  86. Console.WriteLine("Введите первое число");
  87. per_ch = Convert.ToInt16(Console.ReadLine());
  88. Console.WriteLine("Введите второе число");
  89. vtor_ch = Convert.ToInt16(Console.ReadLine());
  90. Console.WriteLine("Введите третье число");
  91. trete_ch = Convert.ToInt16(Console.ReadLine());
  92. obj[1] = new TIME(h, m, s, per_ch, vtor_ch, trete_ch, 2);
  93.  
  94. if (!obj[0].Equals(obj[1]))
  95. {
  96. Console.Write("\nНе равны ");
  97. }
  98. Console.WriteLine("Введите часы");
  99. int chas = Convert.ToInt16(Console.ReadLine());
  100. Console.WriteLine("Введите минуты");
  101. int min = Convert.ToInt16(Console.ReadLine());
  102. Console.WriteLine("Введите секунды");
  103. int sec = Convert.ToInt16(Console.ReadLine());
  104. Console.WriteLine("Введите первое число");
  105. int per_chislo = Convert.ToInt16(Console.ReadLine());
  106. Console.WriteLine("Введите второе число");
  107. int vtor_chislo = Convert.ToInt16(Console.ReadLine());
  108. Console.WriteLine("Введите третье число");
  109. int trete_chuslo = Convert.ToInt16(Console.ReadLine());
  110. obj[2] = new TIME(chas, min, sec, per_chislo, vtor_chislo, trete_chuslo, 3);
  111. if (obj[1].Equals(obj[1]))
  112. {
  113. Console.Write("\nРавны");
  114. }
  115. Console.ReadKey();
  116. }
  117. }
  118. }

Решение задачи: «Реализовать класс использованием интерфейсов»

textual
Листинг программы
  1.         public bool Equals(TIME other)
  2.         {
  3.             return other.часы == this.часы && other.минуты == this.минуты && other.секунды == this.секунды && other.first == this.first && other.second == this.second && other.third == this.third && other.другое == this.другое;
  4.         }

ИИ поможет Вам:


  • решить любую задачу по программированию
  • объяснить код
  • расставить комментарии в коде
  • и т.д
Попробуйте бесплатно

Оцени полезность:

15   голосов , оценка 4 из 5

Нужна аналогичная работа?

Оформи быстрый заказ и узнай стоимость

Бесплатно
Оформите заказ и авторы начнут откликаться уже через 10 минут
Похожие ответы