martes, 23 de abril de 2013

Mostrar abecedario en C# while


using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace Abecedario1
{
    class Program
    {
        static void Main(string[] args)
        {
            char letra='A';

            while (letra <= 'Z')
            {
                Console.Write("-"+letra);
           
                letra++;

            }

            Console.ReadLine();

        }
    }
}

3 comentarios:

Es muy importante tu comentarios: