gitweb on Svarog

projekti pod git sistemom za održavanje verzija -- projects under the git version control system
move samples to 'alpha-mj' subfolder
[mjc2wsl.git] / samples / alpha-mj / RekFac.mj
diff --git a/samples/alpha-mj/RekFac.mj b/samples/alpha-mj/RekFac.mj
new file mode 100644 (file)
index 0000000..674cc14
--- /dev/null
@@ -0,0 +1,17 @@
+program RekFac{
+
+       int factorial(int f)
+       {
+               if (f<0) 
+                       return 0;
+               if (f<=1) 
+                       return 1;
+               return factorial(f-1) * f ;
+       }
+       
+       void main()
+       {
+               print(factorial(3),3);
+               print(factorial(10),10);
+       }
+}
\ No newline at end of file
Svarog.pmf.uns.ac.rs/gitweb maintanance Doni Pracner