Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- class Scooter
- {
- static void Main(string[] args)
- {
- string[] messages = { "Уан", "ту", "фри", "файааааа!!!" };
- Console.WriteLine("Введите цвет (цифрой)");
- int NewColor = Convert.ToInt32(Console.ReadLine());
- ConsoleColor color = (ConsoleColor)NewColor;
- WriteAll(messages, color);
- }
- static void WriteAll(string[] messages, ConsoleColor color)
- {
- Console.ForegroundColor = color;
- for (int i = 0; i < messages.Length; i++)
- {
- Console.WriteLine(messages[i]);
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment