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.
#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;
}
Comments
Leave a comment