Contact: aviboots(AT)netvision.net.il
40,026 questions
51,982 answers
573 users
class Program { static void Main() { Random rnd = new Random(); string[] arr = {"c#", "c", "c++", "java", "python", "rust"}; string str = arr[rnd.Next(0, arr.Length)]; Console.WriteLine(str); } } /* run: c++ */