Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading;
- namespace ConsoleApplication1
- {
- class Program
- {
- static void Main(string[] args)
- {
- for (int numero = 1; numero <= 100; numero += 1)
- {
- if (numero % 2 == 0)
- {
- Console.ForegroundColor = ConsoleColor.Yellow;
- Console.WriteLine("{0}", "- " + numero + "%");
- }
- else
- {
- Console.ForegroundColor = ConsoleColor.Green;
- Console.WriteLine("{0}", "- " + numero + "%");
- }
- Thread.Sleep(numero * 5);
- }
- Console.ReadKey();
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment