domingo, 17 de junio de 2012

PROGRAMA C# .CALCULAR EL FACTORIAL DE UN NUMERO DADO POR EL USUARIO.


using System;

class Program
{
    static void Main(string[] args)
    {

        int fact = 0, e = 1;

        Console.WriteLine("Numero de factorial:");

        fact = int.Parse(Console.ReadLine());

        for (int i = 1; i <= fact; i++)
        {

            e = e * i;
        }

        Console.WriteLine("El factorial es:" + e);

        Console.ReadLine();

    }

}

No hay comentarios.:

Publicar un comentario

Es muy importante tu comentarios: