#include <iostream>
using namespace std;
int main() {
int n, result = 1, i = 1;
cout<<"Enter n!\n";
cin>>n;
while(i <= n){
result *= i;
i++;
}
cout<<"factorial of "<<n<<" is "<<result<<endl;
return 0;
Need a fast expert's response?
and get a quick answer at the best price
for any assignment or question with DETAILED EXPLANATIONS!
Comments
Leave a comment