jueves, 26 de noviembre de 2015

Calcular el factorial recursivo

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

namespace Tarea
{
    class Factorial
    {
        public static int factorial(int n)
        {
            return n == 0 ? 1 : factorial(n - 1) * n;
        }

        public static void Main(string[] args)

        {
            Console.Write("Numero: ");
            int n = int.Parse(Console.ReadLine());

            Console.WriteLine("Factorial: {0}", factorial(n));
        }
    }
}
       

No hay comentarios.:

Publicar un comentario

Es muy importante tu comentarios: