Fadeev.cs 836 B

123456789101112131415161718192021222324252627
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace ydDost1
  7. {
  8. public static class Fadeev
  9. {
  10. static string? my_str;
  11. public static void string_cleaner()
  12. {
  13. string? new_str = "";
  14. Console.WriteLine("Введите строку, состояющую из букв русского алфавита");
  15. my_str = Console.ReadLine();
  16. foreach (char c in my_str)
  17. {
  18. if (!('A' <= c.ToString().ToUpper()[0] && c.ToString().ToUpper()[0] <= 'Н'))
  19. {
  20. new_str += c;
  21. }
  22. }
  23. Console.WriteLine("Строка без первой половины алфавита - {0}", new_str);
  24. }
  25. }
  26. }