Class3.cs 960 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace Library6Properties
  7. {
  8. internal class Class3
  9. {
  10. int cost; //цена одного тюльпана
  11. int count; //количество тюльпанов в букете
  12. public int Сost
  13. {
  14. set
  15. {
  16. this.cost = value;
  17. }
  18. }
  19. public int Tulip
  20. {
  21. set
  22. {
  23. if (value % 2 != 0)
  24. {
  25. this.count = value;
  26. }
  27. else
  28. {
  29. Console.Write("Нельзя заказать нечетное количество тюльпанов");
  30. }
  31. }
  32. }
  33. public int Price
  34. {
  35. get
  36. {
  37. return cost * count;
  38. }
  39. }
  40. }
  41. }