java

Write a program to find the factorial of a given number using while loops in JAVA ( #JAVA )

Write a program to find the factorial of a given number using while loops in JAVA ( #JAVA )

java

//  Question 6 :
//  Write a program to find the factorial of a given number using while loops in JAVA ( #JAVA )

package com.company;
import java.util.Scanner;
public class factorial
{
    public static void main (String args[])
    {
        Scanner sc = new Scanner (System.in);
        System.out.println("Input value of n :");
        int n = sc.nextInt();
        int fact=1;
        while (n>0)
        {
            fact= fact * n;
            n--;
        }
        System.out.println("Factorial : " + fact);

    }       // end of main
}       // end of class

Thanks Dosto for Reading this blog.

I think you all are definitely thinking of being connected with me.

Are you??
Yaa I know no-one is here but then also I provide my all social media links of my Digital Creation Tech DCode and my personal handles.
πŸ§‘β€πŸ’»πŸ§‘β€πŸ’» Social Media Links of Tech DCode :

πŸ‘‰πŸ»Β InstagramΒ :Β https://www.instagram.com/thetechdcode/
πŸ‘‰πŸ»Β Facebook PageΒ :Β https://www.facebook.com/thetechdcode
πŸ‘‰πŸ»Β TwitterΒ :Β https://twitter.com/thetechdcode
πŸ‘‰πŸ»Β TelegramΒ ChannelΒ :Β https://t.me/thetechdcode
πŸ‘‰πŸ»Β YouTubeΒ :Β https://www.youtube.com/channel/UCjJnEdeugftBwQ3yMuD4B_A
πŸ‘‰πŸ»Β Tech DCode LinktreeΒ :Β https://linktr.ee/thetechdcode
πŸ‘‰πŸ»Β My Personal HandlesΒ :Β https://linktr.ee/virtualshivamin

 

πŸ§‘β€πŸ’»πŸ§‘β€πŸ’»Β Social Media Links of SHIVAM SINGH (OWNER) :
πŸ‘‰πŸ»Β InstagramΒ :Β https://www.instagram.com/virtualshivamin/
πŸ‘‰πŸ»Β Facebook PageΒ :Β https://www.facebook.com/virtualshivamin/
πŸ‘‰πŸ»Β TwitterΒ :Β https://twitter.com/virtualshivamin/
πŸ‘‰πŸ»Β Personal LinktreeΒ :Β https://linktr.ee/virtualshivamin

🀟🀘 Check Best Offers/Deals and Discount on Amazon :
πŸ‘‰Β AmazonΒ :Β https://amzn.to/3tLt2FN
πŸ‘‰Β BestsellersΒ :Β https://amzn.to/31boSuB
πŸ‘‰Β New RealeasesΒ :Β https://amzn.to/3rdru5U
πŸ‘‰Β Movers and ShakersΒ :Β https://amzn.to/3lFu5nY
πŸ‘‰Β Computer and accessories :Β https://amzn.to/3lERTbJ
πŸ‘‰Β ElectronicsΒ :Β https://amzn.to/3sqHW4l
πŸ‘‰Β SoftwaresΒ :Β https://amzn.to/3ccwAee

Leave a Reply

Your email address will not be published. Required fields are marked *