Загрузка данных


        // 4
        Console.Write("Введите предложение: ");
        string s4 = Console.ReadLine();
        char[] chars4 = s4.ToCharArray();
        for (int i = 2; i < chars4.Length; i += 3)
            chars4[i] = 'а';
        s4 = new string(chars4);
        Console.WriteLine(s4);

        // 5
        Console.Write("Введите предложение: ");
        string s5 = Console.ReadLine();
        s5 = s5.Replace("ах", "ух");
        Console.WriteLine(s5);

        // 6
        Console.Write("Введите предложение: ");
        string s6 = Console.ReadLine();
        s6 = s6.Replace("да", "не");
        Console.WriteLine(s6);