Class4.cs 869 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace Control
  7. {
  8. internal class Class4
  9. {
  10. int hour;
  11. int minuts;
  12. public int Hour
  13. {
  14. set
  15. {
  16. hour = value;
  17. }
  18. }
  19. public int Minuts
  20. {
  21. set
  22. {
  23. if (value < 60)
  24. {
  25. minuts = value;
  26. }
  27. else
  28. {
  29. Console.WriteLine("Cтолько минут быть не может!");
  30. }
  31. }
  32. }
  33. public string getTime
  34. {
  35. get
  36. {
  37. return "Вы ввели " + hour + " ч. и " + minuts + " мин.";
  38. }
  39. }
  40. }
  41. }