#include #include int SommeR(int n) { if(n==0) { return 0; } else { return n + SommeR(n-1); } } int main() { int x; x=SommeR(4); printf("Somme = %d\n",x); return 0; }