Tech Study

Write C# program to find factorial of any number

Introduction

I have used Visual Studio 2012 for debugging purpose. But you can use any version of visul studio as per your availability..

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
 
public class csharpExercise
{
    static void Main(string[] args)
    {        
        int num,i;
        long fact=1;
 
        // Reading number
        Console.Write("Enter any number to calculate factorial:  ");
        num = Convert.ToInt32(Console.ReadLine());
        fact = 1;
        i = 1;
 
        //Run loop from 1 to number entered by user
        while(i <= num)
        {
            fact = fact * i;
            i++;
        }            
 
        Console.Write("Factorial of : "+ num +" is " + fact);
 
        Console.ReadLine();
    }
}

Result

Write C# program to find factorial of any number
Write C# program to find factorial of any number

TaggedWrite C program to find factorial of any number

Java Final keyword

Introduction : java final keyword The final keyword present in Java programming language is generally used for restricting the user. …

Read more

C++ Memory Management: new and delete

C++ Memory Management We know that arrays store contiguous and the same type of memory blocks, so memory is allocated …

Read more