mirror of
https://github.com/renbaoshuo/202401-programming-assignments.git
synced 2024-11-23 15:48:42 +00:00
10 lines
120 B
C
10 lines
120 B
C
double fact(int n) {
|
|
double res = 1;
|
|
|
|
for (int i = 1; i <= n; i++) {
|
|
res *= i;
|
|
}
|
|
|
|
return res;
|
|
}
|