Skip to content

Instantly share code, notes, and snippets.

@oriolrivera
Created March 12, 2015 22:35
Show Gist options
  • Save oriolrivera/1d9183e7f8c1086cdeba to your computer and use it in GitHub Desktop.
Save oriolrivera/1d9183e7f8c1086cdeba to your computer and use it in GitHub Desktop.
contador descendente c#
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace bucleForDesc
{
class Program
{
static void Main(string[] args)
{
for (int i = 1000; i >= 1; i--)
{
Console.WriteLine(i);
}
Console.Read();
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment