Repare & et |

This commit is contained in:
2016-04-19 10:04:20 +02:00
parent d630e285ba
commit 69f4de0a90
137 changed files with 13211 additions and 13 deletions

View File

@@ -0,0 +1,16 @@
fact( entier $f )
{
si $f = 1 | $f = 0 alors {
retour 1;
}
sinon {
retour fact( $f - 1 ) * $f ;
}
}
main()
entier $a;
{
$a = lire();
ecrire( fact( $a ) );
}