Categories: Blog

Program of Factorial Using Loop in C++

In mathematics, the factorial of a non-negative integer n, denoted by n!, is the product of all positive integers less than or equal to n. For example,

6! = 6 x 5 x 4 x 3 x 2 x 1 = 720

The value of 0! is 1, according to the convention for an empty product.

Example Program

/* Program of Factorial Using Loop in C++
Pardeep Patel @ studywarehouse.com */#include<iostream>
#include<conio.h>

using namespace std;

int main()
{

// Variable Declaration
int counter, n, fact = 1;

// Get Input Value
cout<<"Enter the Number :";
cin>>n;

//for Loop Block
for (int counter = 1; counter <= n; counter++)
{
fact = fact * counter;
}

cout<<" Factorial Value of "<<n<<" is: "<<fact;
// Wait For Output Screen
getch();
return 0;
}

Sample Output
Enter the Number: 6
Factorial Value of 6 is: 720

Pardeep Patel

Hi!, I am Pardeep Patel, an Indian passport holder, Traveler, Blogger, Story Writer. I completed my M-Tech (Computer Science) in 2016. I love to travel, eat different foods from various cuisines, experience different cultures, make new friends and meet other.

Recent Posts

Inspiring Young Minds: Writing, Websites, and Unleashing Creativity

In a world brimming with digital possibilities, inspiring young minds to express themselves through writing…

1 month ago

Why SEO is Essential for Business Growth: Tips for Growing Your Website

In today's fiercely competitive digital landscape, understanding why SEO is essential for business growth and…

1 month ago

10 Free Online Courses from MIT

Dive into the world of knowledge with "10 Free Online Courses from MIT"! Presented in…

1 month ago

10 ChatGPT Prompts to create your CV

Welcome to "10 ChatGPT Prompts to Create Your CV." Crafting a compelling CV is essential…

1 month ago

StellarWP: Elevating Your WordPress Experience with Eight Exceptional Products

Welcome to our exploration of StellarWP, where we embark on a journey to elevate your…

2 months ago

The Events Calendar: Your All-in-One Solution for WordPress Event Management

Managing events on your WordPress website can be a juggling act. Juggling event details, promoting…

2 months ago