Question

Compute factorial of a number Factorial of n = 1*2*3 *n 702

In C++ using the while loop..

0 0
Add a comment Improve this question Transcribed image text
Answer #1

#include<iostream>
using namespace std;

int main()
{
int n;
int fact=1;
cout<<"Enter number ";
cin>>n;
if (n<0)
{
cout<<"Enter positive value";
}
else
{
while(n>0)
{
fact=fact*n;
n--;
}


}
cout<<"The factorial of "<<n<<" is "<<fact;
return 0;
}

nter number4 The factorial of 0is 24 Process returned 0 〈0x0〉 execution time : 1.532 s Press any key to continue

Add a comment
Know the answer?
Add Answer to:
In C++ using the while loop.. Compute factorial of a number Factorial of n = 1*2*3...
Your Answer:

Post as a guest

Your Name:

What's your source?

Earn Coins

Coins can be redeemed for fabulous gifts.

Not the answer you're looking for? Ask your own homework help question. Our experts will answer your question WITHIN MINUTES for Free.
Similar Homework Help Questions
ADVERTISEMENT
Free Homework Help App
Download From Google Play
Scan Your Homework
to Get Instant Free Answers
Need Online Homework Help?
Ask a Question
Get Answers For Free
Most questions answered within 3 hours.
ADVERTISEMENT
ADVERTISEMENT
ADVERTISEMENT