Переделать программу под Паскаль
Разработать программу, которая для заданной строки s:
• вставляет символ x после каждого вхождения символа y;
static void Main(string[] args)
{
Console.WriteLine("Введите строку: ");
StringBuilder a = new StringBuilder(Console.ReadLine());
Console.WriteLine("Исходная строка: " + a);
Console.WriteLine("Введите символ x: ");
char x = char.Parse(Console.ReadLine());
Console.WriteLine("Введите символ y: ");
char y = char.Parse(Console.ReadLine());
for (int i = 0; i < a.Length; ++i)
if (a[i] == x) { a.Insert(i + 1, y); ++i; }
Console.WriteLine("Измененная строка: " + a);
Console.ReadKey();
}
сам не знаю языка
Please enter comments
Please enter your name.
Please enter the correct email address.
You must agree before submitting.

Answers & Comments


Copyright © 2024 SCHOLAR.TIPS - All rights reserved.