Skip to content

translate in french factorial #437

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
31 changes: 31 additions & 0 deletions src/algorithms/math/factorial/README.fr-FR.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
# Factorielle

En mathématique, la factorielle d'un entier naturel non négatif `n`,
noté par l'expression `n!`, est le produit de tous les entiers positifs inférieurs ou égaux à `n`. Par exemple:

```
5! = 5 * 4 * 3 * 2 * 1 = 120
```

| n | n! |
| ----- | --------------------------: |
| 0 | 1 |
| 1 | 1 |
| 2 | 2 |
| 3 | 6 |
| 4 | 24 |
| 5 | 120 |
| 6 | 720 |
| 7 | 5 040 |
| 8 | 40 320 |
| 9 | 362 880 |
| 10 | 3 628 800 |
| 11 | 39 916 800 |
| 12 | 479 001 600 |
| 13 | 6 227 020 800 |
| 14 | 87 178 291 200 |
| 15 | 1 307 674 368 000 |

## Références

[Wikipédia](https://fr.wikipedia.org/wiki/Factorielle)
3 changes: 2 additions & 1 deletion src/algorithms/math/factorial/README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
# Factorial

_Read this in other languages:_
[_简体中文_](README.zh-CN.md),
[_简体中文_](README.zh-CN.md),
[Français](README.fr-FR.md)

In mathematics, the factorial of a non-negative integer `n`,
denoted by `n!`, is the product of all positive integers less