Answer to Question #275788 in C++ for Ongie

Question #275788

create a C++ full program that calculates a factorial (!) of any number between 3 and 9 , the program must give feedback to the user if the number is less than 3.


1
Expert's answer
2021-12-06T02:18:06-0500
#include<iostream>
using namespace std;
int main(){
	int fact = 1;
	cout<<"Enter a number: "; int n;
	cin>>n;
	if(n<3){
		cout<<"The number is less than 3\n";
		
	}
	else if(n>9){
		cout<<"The number is greater than 9\n";
	}
	
	for(int i=1; i<=n; i++){
		fact *= i;
	}
	cout<<"The factorial of "<<n<<" is "<<fact<<endl;
}

Need a fast expert's response?

Submit order

and get a quick answer at the best price

for any assignment or question with DETAILED EXPLANATIONS!

Comments

No comments. Be the first!

Leave a comment