What I'm making mistake I want to display in such a way
Enter the number : 4
Factorial of 4 is : 1x2x3x4 = 24!


Code:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace Factorial
{
    class fact
    {
        public int[] factorial(int num)
        {
            int[] fact = new int[10];
            for (int
...