Created
March 12, 2015 22:35
-
-
Save oriolrivera/1d9183e7f8c1086cdeba to your computer and use it in GitHub Desktop.
contador descendente c#
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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