Gitiles
Code Review
Sign In
gerrit.openbmc.org
/
openbmc
/
phosphor-host-ipmid
/
df661155de7967c7b184ec04745f4db5b45e0245
/
.
/
sample.cpp
blob: 72a120a8625485e2d0d04481075ba1a8700d83c8 [
file
] [
log
] [
blame
]
#include
<sample.h>
int
Factorial
(
int
n
)
{
int
result
=
1
;
for
(
int
i
=
1
;
i
<=
n
;
i
++)
{
result
*=
i
;
}
return
result
;
}