mirror of
https://github.com/PacktPublishing/Web-Development-with-Blazor-Second-Edition.git
synced 2025-12-06 05:32:03 +01:00
5 lines
73 B
C
5 lines
73 B
C
|
|
int fact(int n)
|
||
|
|
{
|
||
|
|
if (n == 0) return 1;
|
||
|
|
return n * fact(n - 1);
|
||
|
|
}
|