For the complete documentation index, see llms.txt. This page is also available as Markdown.

«PlusChar» (Задача)

Что выведет следующий код?

Console.WriteLine(1 + 2 + 'A');
Console.WriteLine(1 + 'A' + 2);
Console.WriteLine('A' + 1 + 2);

Решение

Last updated