ajout code fonction somme dans le TD
This commit is contained in:
@@ -6,6 +6,15 @@
|
||||
|
||||
### 1. 1. Fonction somme :
|
||||
|
||||
```python
|
||||
def somme(n) :
|
||||
if n == 0 :
|
||||
return 0
|
||||
else :
|
||||
return n + somme(n-1)
|
||||
|
||||
```
|
||||
|
||||
1) Combien d'appel de fonction sont nécessaire pour somme(5) ? somme(n) ?
|
||||
|
||||
### 1. 2. Fonction factorielle :
|
||||
|
||||
Reference in New Issue
Block a user