zadanie2.cs 865 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace ГончароваНЕ_ПР3
  7. {
  8. internal class zadanie2
  9. {
  10. public static string str;
  11. public static int b;
  12. public string forString
  13. {
  14. set
  15. {
  16. str = value;
  17. }
  18. }
  19. public int forInt
  20. {
  21. set
  22. {
  23. b = value;
  24. }
  25. }
  26. public static void getsymbol()
  27. {
  28. char symbol = ' ';
  29. for (int i = 0; i < str.Length; i++)
  30. {
  31. if (i+1 == b)
  32. symbol = str[i];
  33. }
  34. Console.WriteLine($"На позиции {b} стоит символ '{symbol}'");
  35. }
  36. }
  37. }