summaryrefslogtreecommitdiffstats
path: root/sample.cpp
blob: 451c6c4bac1199e666e9ad1bc325ad8be3ec2341 (plain)
1
2
3
4
5
6
7
8
9
10
11
#include <sample.h>

int Factorial(int n)
{
    int result = 1;
    for (int i=1; i<=n; i++)
    {
        result *= i;
    }
    return result;
}
OpenPOWER on IntegriCloud