Free Web Hosting

Web hosting

jueves, 5 de mayo de 2011

Ejemplo 4. Factorial.(Console App)

Programa que pide un número y calcula e imprime el factorial de ese número, usando ciclo While.

Código que va entre las llaves que estan después de: static void Main(string[] args):

           Console.WriteLine("Introduce un numero para calcular su factorial: ");
            int numero = Convert.ToInt32(Console.ReadLine());
            int fact = numero;
            int x = fact - 1;

            while (x != 1)
            {
                fact = fact*x;
                x = x - 1;
            }
            Console.WriteLine("Factorial de " + numero + " = " + fact);
            Console.ReadKey();

Dar F5 o icono de play.

1 comentario:

  1. Casino Sites - Choices & Games | Choices & Games
    Choices 샌즈카지노 & Games from Choices & Games. Choose from thousands of games from across the range of 1xbet slots, table games, live casino 카지노사이트 & more at Choices Casino.

    ResponderEliminar