✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
Program .exe банан
class Program
{
static void Main(string [] str)
{
string s = "ан";
int i = 0;
i = str [0] .IndexOf ( "ан", 0); System.Console.Write(i + "");
i = str [0] .IndexOf (s, i + s.Length); System.Console.Write(i + "");
i = str [0] .IndexOf (s, i + s.Length); System.Console.Write(i);
}
}
Вкажіть результат виведення на консоль після спроби запустити програму на компіляцію і виконання:
(**CharpBase**)