static void Main(string[] args)
{
{
string a = Console.ReadLine();
char[] b = c.ToCharArray();
for (int i = 0; i < 3; i++)
{
b[i] = char.ToUpper(b[i]);
}
Console.WriteLine(b);
}
}
var text = Console.ReadLine();
var textArray = text?.ToCharArray();
for (var i = textArray.Length - 3; i < textArray.Length; i++)
{
textArray[i] = char.ToUpper(textArray[i]);
}
Console.WriteLine(textArray);
Console.ReadKey();
var text = Console.ReadLine();
var textArray = text?.ToCharArray();
textArray = textArray.Take(textArray.Length - 3).Concat(textArray.Skip(textArray.Length - 3).Select(char.ToUpper)).ToArray();
Console.WriteLine(textArray);
Console.ReadKey();