using System; class SveVelikaSlova2 { static void Main() { Console.Write("Tekst -> "); string s = Console.ReadLine(); char[] t = s.ToCharArray(); for(int i = 0; i < t.Length; i++) { t[i] = char.ToUpper(t[i]); } s = new string(t); Console.WriteLine("TEKST -> {0}", s); } }