SySagar / probot-test-app

https://probot-test-app.vercel.app
ISC License
0 stars 0 forks source link

Custom Test #24

Open SySagar opened 1 year ago

SySagar commented 1 year ago

include

using namespace std;
int main()
{
int i,fact=1,number=5;

for(i=1;i<=number;i++){
fact=fact*i;
}
cout<<"Factorial of " <<number<<" is: "<<fact<<endl;
return 0;
}

intern-probot[bot] commented 1 year ago

output: Factorial of 5 is: 120