Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System;
- class Program
- {
- static void Main(string[] args)
- {
- for (int i = 1; i <= 10; i++)
- {
- Console.ForegroundColor = ConsoleColor.Red;
- Console.WriteLine(new string('*',60));
- }
- for (int i = 1; i <= 10; i++)
- {
- Console.ForegroundColor = ConsoleColor.Blue;
- Console.WriteLine(new string('*', 60));
- }
- for (int i = 1; i <= 10; i++)
- {
- Console.ForegroundColor = ConsoleColor.DarkYellow;
- Console.WriteLine(new string('*', 60));
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment