123456789101112131415161718192021222324252627 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace ydDost1
- {
- public static class Fadeev
- {
- static string? my_str;
- public static void string_cleaner()
- {
- string? new_str = "";
- Console.WriteLine("Введите строку, состояющую из букв русского алфавита");
- my_str = Console.ReadLine();
- foreach (char c in my_str)
- {
- if (!('A' <= c.ToString().ToUpper()[0] && c.ToString().ToUpper()[0] <= 'Н'))
- {
- new_str += c;
- }
- }
- Console.WriteLine("Строка без первой половины алфавита - {0}", new_str);
- }
- }
- }
|